1 变量:一个变量就是一个单词,只有一个单一的值
1 Python里面的数据类型 interage , floats , booleans , String等
2 Python是一个区分大小写的语言
3 Python的变量可以随时进行覆盖
2 Python的多行注释是通过“ """ *** """ ”来实现的
3 Python有6种算术运算符 +,-,*,/,**(幂),%
4 Python里面求x^m,写成x**m
5 一个String是通过 ‘ ‘ 或者 "" 包成的串
6 Python是通过 \ 来实现转义字符的
7 我们可以使用 "" 来避免转义字符的出现
把变量fifth_letter设置为MONTY的第五个字符
fifth_letter = "MONTY"[4]
print fifth_letter
8 介绍String的第一种方法,len()求字符串的长度
parrot = "Norwegian Blue"
print len(parrot)
9 介绍String的第二种方法,lower()把所有的大写字母转化为小写字母
parrot = "Norwegian Blue"
print parrot.lower()
10 介绍String的第三种方法,upper()把所有的小写字母转化为大写字母
把parrot中的小写字母转换为大写字母并打印
parrot = "norwegian blue"
print parrot.upper()
11 可以使用 + 来连接两个String
12 介绍str()把一个数字转化为字符串
设置一个变量pi值为3.14 , 把pi转化为字符串
pi = 3.14
print str(pi)
print "The value of pi is around " + str(3.14)