变量和简单的数据类型
第一章本来应讲Python的安装,但是由于本人已经用过一段时间了,因此安装就不讲了。只是稍微提一句ANACONDA。
变量
1 2
| message = "Hello world!" print(message)
|
我们添加了一个名为message的变量。每个变量都存储了一个值–与变量相关联的信息。
- 在程序中可以随时修改变量的值,而Python将始终记录变量的最新值;
- 变量名只能包含字母、数字和下划线,且不能以数字开头。尽量使用小写字母;
字符串
字符串就是一系列字符。在python中用引号括起来的都是字符串,其中引号可以是单引号也可以是双引号。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| name0 = 'Johnkou London' name1 = "Jone Ln" message0 = '"Hi!",she told to me.' message1 = "we're the world" message = name0 + ":" + message0
print(name0.title()) print(message0.upper()) print(message1.lower())
print(name0 + ":" + message) print(message)
print("python") print("\tpython") print("I\nLove\nPython") print("You know:\n\tI love Python")
language = " python " print(language.rstrip()) print(language.lstrip())
language = " python " language = language.rstrip() language = language.lstrip() print(language)
|
数字
整数、浮点数、以及数字转字符
+加、-减、*乘、/除、**乘方、%求模(取余数)
1 2 3 4 5 6 7
| age = 23 message = "Happy " + age + "rd Birthday"
age = 23 message = "Happy " + str(age) + "rd Birthday"
|
注释