随笔分类 -  Python

摘要:``` #!/usr/bin/env python2 # coding: utf8 import multiprocessing def foo(h,context): if h%2 == 0: print (h) else: context.append(h) if __name__ == "__main__": ## 设置共享list... 阅读全文
posted @ 2019-09-15 17:29 yes5144 阅读(3086) 评论(0) 推荐(0)
摘要:参考链接1:https://blog.csdn.net/VictoriaW/article/details/75314737 参考链接2:https://blog.csdn.net/sheldonwong/article/details/86684761 Unicode和str Unicode st 阅读全文
posted @ 2019-09-15 17:26 yes5144 阅读(61301) 评论(0) 推荐(0)