
python学习
lyium
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用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 · 4460 阅读 · 0 评论 -
学习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 · 1458 阅读 · 0 评论