摘要: PTVS下载地址:https://pytools.codeplex.com/releases/view/109707 Python下载地址:https://www.python.org/downloads/release/python-351/ API地址:http://python.usyiyi.cn/ VS下配置环境 阅读全文
posted @ 2016-06-07 20:52 Kimisme 阅读(178) 评论(0) 推荐(0)
摘要: 除法 >>> 8 / 5 1 >>> 8 / 5.0 1.6 >>> 8.0 / 5 1.6 >>> 8 // 5.0 1.0 余数 >>> 8 % 5 2 **运算符 >>> 5 ** 2 25 =运算符 >>> width = 20 >>> height = 5*9 >>> width * height 900 _... 阅读全文
posted @ 2016-06-07 20:52 Kimisme 阅读(205) 评论(0) 推荐(0)