码迷,mamicode.com
首页 > 编程语言 > 详细

python第二天基础1-1

时间:2015-12-10 23:51:31      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

一、作用域

对于变量的作用域,执行声明并在内存中存在,该变量就可以在下面的代码中使用。

if 1==1:
    name = wupeiqi
print  name

 二、三元运算

result = 1 if 条件 else 2   如#果条件成立,值1付给result否则值2付给result

如果条件为真:result = 值1
如果条件为假:result = 值2

name =  ‘sb‘  if 1==1 else ‘2b‘

 

input = raw_input()

result = 2b  if input ==alex else haoren

 

python第二天基础1-1

标签:

原文地址:http://www.cnblogs.com/sundi/p/5037628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!