随笔分类 -  Python

摘要:```python # coding = utf-8 # 1 line: Output print('Hello, world!') # 2 lines: Input, assignment #name = input('What is your name?\n') name = 'Lius' print('Hi, %s.' % name) # 3 lines: For loop, built... 阅读全文
posted @ 2017-05-31 14:50 Philly008 阅读(209) 评论(0) 推荐(0)
摘要:解决 zipimport.ZipImportError: can't decompress data; zlib not available 的方法: 1.下载源码: http://www.zlib.net/ 2.解压安装: 重新安装 python3: 解决 yum 不可用: 阅读全文
posted @ 2017-05-30 18:45 Philly008 阅读(16353) 评论(1) 推荐(2)