Python学习week1

2018-09-05 07:58:24来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

密文输入:

import getpass

password=getpass.getpass(“password:”)

 

if 表达式:

       执行语句

elif 表达式:

       执行语句

else:

       执行语句

 

使用while循环:

age_of_oldboy=50
count=0
while count<3:
    count+=1
    age = int(input("guess age:"))
    if age>age_of_oldboy:
        print("think smaller.")
    elif age<age_of_oldboy:
        print("think bigger.")
    else:
        print("you got it.")
        break
else
:
    print("you have trid too many times...")

 

使用for循环:

age_of_oldboy=50
for i in range(3):
    age = int(input("guess age:"))
    if age>age_of_oldboy:
        print("think smaller.")
    elif age<age_of_oldboy:
        print("think bigger.")
    else:
        print("you got it.")
        break
else
:
    print("you have trid too many times...")

 

 

for i in range(0,10,3):
    print(i)

打印结果如下:

0

3

6

9

 

continue:跳出本次循环,进入下一次循环

break:结束整个循环

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:启动 uiautomatorviewer 时报 SWT folder &#39;..\lib\location

下一篇:利用Python无限爆破路由器密码, 限制错误次数? 对Python无用!