- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 使用flask搭建http服务器只能本机访问的解决办法
如果想要在internet上访问,需要如下操作:1.更改程序if __name__ =='__main__': app.run(host = '0.0.0.0' ,port = 5000, debug = 'True')host处ip为本机IP,通过ipconfig查看本机ip地址。2.防火墙开放5000端口,入站规则允许。3.如果在内网需要映射端口。...
2020-03-11 08:01:51
4437
原创 学习python小程序,删除txt文件中的空格
import osf = open(’./1.txt’)lines = f.readlines()f.close()for line in lines:rs = line.rstrip(’\n’)newtxt = rs.replace(’ ‘,’’) #替换空格newname = ‘1_1.txt’ #生成新的txt文件if os.path.exists(newname):os....
2020-02-15 20:10:39
1456
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人