
坑
进击的rookie of python
print('Welcome')
展开
-
字符串格式的列表,转换为列表
a="[1,2,3]"newa=a.replace('"','').replace(']','').replace('[','')print([ int(i) for i in newa.split(',')])'''[1, 2, 3]'''a="'[1,2,3]'"newa=a.replace('\'[','').replace(']\'','')b=[ int(i) f...原创 2018-12-25 17:04:40 · 5575 阅读 · 0 评论 -
Django ConnectionAbortedError: [WinError 10053]一系列错误
Exception happened during processing of request from ('127.0.0.1', 61328)Traceback (most recent call last): File "D:\Anaconda\lib\wsgiref\handlers.py", line 138, in run self.finish_response()...转载 2019-03-12 21:23:44 · 3533 阅读 · 1 评论