Python
TS1130
这个作者很懒,什么都没留下…
展开
-
Python基础语法
#coding:utf-8print 'HelloWorld'i = 5 print i i = i + 1 print i #python 中字符串有单引号、双引号及三引号,单引号与双引号没有区别 s = '''This is a multi-line string. This is the second line.''' print s#标识符命名:区分大小写、能包含字母、数字、下划线,只允许原创 2017-06-01 17:35:18 · 555 阅读 · 0 评论 -
Python学习
开发环境: Python下载地址 最新版本 Python:https://www.python.org/downloads/ 注意:本门课使用Python 2版本,所以请下载最新的 Python 2.7.x Python(x,y) 是 Windows 下的 Python 集成包,除了 Python 系统外,还包含了众多第三方开发包以及 Spyder 集成开发环境(IDE,Integrat原创 2017-07-04 21:17:37 · 545 阅读 · 0 评论