首页 > 代码库 > python学习1

python学习1

#!/usr/bin/env python
age = raw_input("how old are you")
job = raw_input(‘what is your job‘)
msg= """
abc
abc
"""
if int(age)>=30:
  print"you r too old,you can only work for ..."
elif  int(age)>=20:
  print" you r 20 man"
else:
   print‘your are still very young!‘
print msg

python学习1