欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python初体验

程序员文章站 2022-03-20 21:58:47
python第一次接触时感觉简洁明了,没有c语言烦多,第一课学了打印有关交互的知识。 ......

python第一次接触时感觉简洁明了,没有c语言烦多,第一课学了打印有关交互的知识。

'''username = input("userane:")
password = input("password:")
print(username,password)'''
name = input("name:")
age = input("age:")
job = input("job:")
salary = input("salary:")
info = '''
------- info of %s ------
name:%s
age:%s
job:%s
salary:%s
''' % (name,name,age,job,salary)
print(info)
第二课讲了一个猜年龄的
age_of_wo = 23
gessar_age = int(input("gessar age:"))
if gessar_age == age_of_wo :
print("yes,you got it.")
elif gessar_age > age_of_wo:
print("think bigger!")
else:
print("think small...")
print()