用户:哈哈大叫的小狗查看:0 回复:0 评论:0 创建时间:2020-12-03T21:50:05
【作品展示】

【作品介绍】
向他人问好,并收集信息,存储在information.txt中。【示意图是作者乱找的】
【作品源代码】
with open('information.txt','a') as file_object:
print("Hello!")
firstname=input("What's your first name?")
lastname=input("What about your last name?")
fullname= firstname +" "+ lastname
print("Okay,"+fullname+".Nice to meet you!")
age=input("How old are you?")
print("I know,",firstname,".You're",age,"-year-old")
like=input("What food do you like?")
print("I like "+like+",too!")
hobby=input("What's your hobby?")
print(hobby.title(),",that sounds good!")
file_object.write(fullname)
file_object.write(",")
file_object.write(age)
file_object.write(",")
file_object.write(like)
file_object.write(",")
file_object.write(hobby)
file_object.write("\n")
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn