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

python初体验

时间:2018-04-08 21:12:35      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:got   name   bsp   style   ges   int()   python   年龄   一课   

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()
 

python初体验

标签:got   name   bsp   style   ges   int()   python   年龄   一课   

原文地址:https://www.cnblogs.com/7882-com/p/8747240.html

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