python学习,day1:循环判断基本语句的几个代码

时间:2021-05-12 12:51:00
 # coding=utf-8
# Author: RyAn Bi
count = 0
'''while True :
print('count:',count)
count = count + 1
if count == 10000:
break #退出这个循环,终止while
'''
#for i in range(0,10,2): #从0 到10,间隔2
# print('loop',i) for i in range(10):
if i < 3:
print('you see',i)
else:
continue #退出这次循环,继续循环
print('hehe')

上面这个代码,是一个简单的循环代码,需要注意的就是,一个range的用法,一个是break和contiue,break是结束整个循环体,continue是结束单次循环

 # coding=utf-8
# Author: RyAn Bi
old_boy_age = 39
count = 0
'''while True:
if count == 3:
break
#第一种方法,当循环到3,退出
'''
while count < 3: #第二种方法
guessage = int(input('guessage:')) #使用int是为了保证输入的是整形数据
if old_boy_age == guessage :
print('congratulations,you got it!')
break
elif old_boy_age > guessage: #不是else if,是elif
print('get bigger please!')
else :
print('get smaller please!')
count += 1#第二种方法
if count == 3:
countine_confirm = input('do you want to go on?,if you want push enter,else push n')
if countine_confirm != "n":
count = 0
#if count == 3: 第一种方法
else:
print('you have tried too many times!')

上面是一个猜年龄的代码,猜对了或者错误三次后,停止。

 # coding=utf-8
# Author: RyAn Bi
'''=
username = input('username:')
password = input('password:')
print(username,password)
'''
name =input('name:')
age =int(input('age:'))
print(type(age))
job = input('job:')
salary =int( input('salary:')) info ='''
---------info of %s----------
name:%s
age:%d
job:%s
salary:%d
'''%(name,name,age,job,salary) #方法1,其中引用的顺序必须对应上
print(info)
info2 ='''
---------info of {_name}----------
name:{_name}
age:{_age}
job:{_job}
salary:{_salary}
'''.format(_name =name,
_age =age,
_job = job,
_salary=salary) #第二种方法,用变量代替,只要变量对应上即可
print(info2)
info3 ='''
---------info of {0}----------
name:{0}
age:{1}
job:{2}
salary:{3}
'''.format(name,age,job,salary) #第三种方法,用数字代替,注意从0开始
print(info3)

上面主要是一个引用的代码,表示引用的方法,介绍了3种方法