标签:python
#!/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
原文地址:http://huzhongliang.blog.51cto.com/1817180/1862761