一 条件判断 if <条件判断1>: <执行1> elif <条件判断2>: <执行2> elif <条件判断3>: <执行3> else: <执行4> if判断条件还可以简写,比如写: if x: print('True') 只要x是非零数值.非空字符串.非空list等,就判断为True,否则为False. 二 循环 for...in循环 #列表的循环 names = ['Michael', 'Bob', 'Tracy'…
1 环境变量 1.1 Windows下环境变量 系统变量Path中要加入Python安装路径: C:\xxxx\Python36;C:\xxxx\Python36\Scripts; 2 条件判断 2.1 if...elif..else 只有一种条件判断 if xxxx: code elif yyyy: code else: code 非空即真 包括空字符串.空列表.None等 非零即真 if i: #i为非零,则为True 2.2 比较(关系)运算符 == 等于 != 不等于 > 大于 < 小…
1.条件判断 score = int(input("请输入学生成绩:"))if score>100 and score <0: print("请输入正确的成绩")elif score<=100 and score >=90: print("优秀")elif score < 90 and score >= 80: print("良好")elif score <80 and score &…
缩进 Python的最大特色是用缩进来标明成块的代码. 这点和其他语言区别很明显,比如大家熟悉的C语言里: ) { num+=; flag-=; } 而在python中: if flag>= 0 : num+=1 flag-=1 num+=1和flag-=1前面有四个空格的缩进.通过缩进,Python识别出这两个语句是隶属于if. 条件判断 if语句之后的冒号 以四个空格(Tab)的缩进来表示隶属关系, Python中不能随意缩进.elif是else if的缩写,可以有多个elif. if <…
age = 20 if age >= 18: print('your age is', age) print('adult') 根据Python的缩进规则,如果if语句判断是True,就把缩进的两行print语句执行了,否则,什么也不做. 注意不要少写了冒号:. if判断条件还可以简写,比如写: if x: print('True') 只要x是非零数值.非空字符串.非空list等,就判断为True,否则为False. elif是else if的缩写,完全可以有多个elif,所以if语句的完整形式…
Python之if语句 比如,输入用户年龄,根据年龄打印不同的内容,在Python程序中,可以用if语句实现: age = 20 if age >= 18: print 'your age is', age print 'adult' print 'END' 注意: Python代码的缩进规则.具有相同缩进的代码被视为代码块,上面的3,4行 print 语句就构成一个代码块(但不包括第5行的print).如果 if 语句判断为 True,就会执行这个代码块. 缩进请严格按照Python的习惯写法…
值类型之间的相互转化 number | string | boolean 一.转换为boolean=>Boolean(a); var num = 10; var s = '123'; var b1 = Boolean(num); var b2 = Boolean(s); console.log(b1,b2); //true true var num1 = 0; var s1 = ""; var b3 = Boolean(num1); var b4 = Boolean(s1); c…
1:条件判断 2:循环 2.1:for 2.2  while 小结: continue :跳出本次循环 进行下次循环,  break :结束循环体.…
一.第一句Python代码 在 /home/dev/ 目录下创建 hello.py 文件,内容如下: [root@python-3 scripts]# cat hello.py #!/usr/bin/env python print("Hello World!") 输出结果: [root@python-3 scripts]# python hello.py Hello World! 二.解释器 上一步中执行 python /home/dev/hello.py 时,明确的指出 hello…
5.1 if语句 没什么好说,if语句语法如下: if expression: expr_true_suit 5.1.1多重条件表达式 单个if语句可以通过布尔操作符and,or,not实现多重条件判断或否定判断. if not warn and (system_load>=10): print 'WARNING:LOSING RESOURCE' warn+=1 5.2 else 语句 如果if条件为假程序将执行else后的语句. if expression: expr_true_suit el…