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