标签:src str 三元 res logs 执行 syntax image 基础
对于变量的作用域,执行声明并在内存中存在,该变量就可以在下面的代码中使用。
1
2
3
|
if 1 = = 1 : name = ‘wupeiqi‘ print name |
下面的结论对吗?
外层变量,可以被内层变量使用内层变量,无法被外层变量使用
1
|
result = 值 1 if 条件 else 值 2 |
如果条件为真:result = 值1
如果条件为假:result = 值2
对于Python,一切事物都是对象,对象基于类创建
所以,以下这些值都是对象: "wupeiqi"、38、[‘北京‘, ‘上海‘, ‘深圳‘],并且是根据不同的类生成的对象。
标签:src str 三元 res logs 执行 syntax image 基础
原文地址:http://www.cnblogs.com/luoahong/p/7160442.html