赞
踩
#使用print函数将“人生苦短,及时行乐”输出到文本文件text.txt中
fp=open('text.txt','w') # 打开文件
print('人生苦短,及时行乐',file=fp) # 输出内容到文件
fp.close() # 关闭文件
# 使用input函数输出个人自我介绍
name=input("请输入你的名字:")
age=int(input("请输入你的年龄:"))
motto=input("请输入你的座右铭:")
print('------------自我介绍------------')
print('姓名:',name)
print('年龄:',age)
print('座右铭:',motto)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。