记第一个问题——python文件无法写入数据

帅比萌擦擦* 提交于 2019-12-04 22:02:09
import getpass username = input("please input your name:") password = getpass.getpass("please input the password:") fo = open("homework01.txt","a+") print(username) print(password) fo.write(username) fo.write(password) fo_read = fo.read() print(fo_read) fo.close() Console: please input your name:Ansue please input the password:123456 Ansue 123456 .....hello也无法写入
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!