#!/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
时间: 2024-10-25 22:38:28