一、行和缩进
Python与其他语言最大的区别就是,Python的代码块不适用大括号{}来控制类,数以及其他逻辑判断。python 最具特色的就是用缩进来写模块。
缩进的空白数量是可变的,但是所有代码块语言必选包含相同的缩进空白数量,这个必须严格执行。
如下所示:
if True: print "true" else: print "false"
以下代码将会执行错误:
#!/usr/bin/python# -*- coding: UTF-8 -*-# if True: print "Answer" print "True" else: print "Answer" # 没有严格缩进,在执行时会报错 print "False"
执行后的代码,会出现如下错误:
$ python test.py File "test.py", line 5 if True: ^IndentationError: unexpected indent
二、print输出
#!/usr/bin/python # -*- coding: UTF-8 -*- x="a" y="b" print (x) print (y)
三、if语句
四、字典
字典是另一种可变容器模型,且可存储任意类型对象。
字典的每个键值(key=>value)对用冒号(:)分割,每个对之前用逗号(,)分割,整个字典包括在括号({})中。
格式如下所示:
d = {key1 : value1, key2 : value2 }
键必须是唯一的,但值则不必。
值可以取任何数据类型,但键必须是不可变得,如字符串,数字或元组。
一个简单的字典实例:
dict = {‘luwenjuan’: ‘123‘, ‘ningji‘ : ‘18‘}
也可以如下字典:
dict1 = {‘abc’:4456 };
dict2 = {‘abc’: 123,456,45: 12};
#!/usr/bin/python dict = {‘Name‘: ‘Zara‘, ‘Age‘: 7, ‘Class‘: ‘First‘}; print "dict[‘Alice‘]: ", dict[‘Alice‘];
以上实例输出结果:
dict[‘Alice‘]: Traceback (most recent call last): File "test.py", line 5, in <module> print "dict[‘Alice‘]: ", dict[‘Alice‘];KeyError: ‘Alice‘
五、修改字典 向字典添加新内容的方法是增加新的键/值对,修改或删除已有键/值对如下实例: #!/usr/bin/python dict = { ‘name‘: ‘luwenjuan‘, ‘Age‘:18 ‘Class‘: ‘First‘}; dict [ ‘Age‘ ] = 19; doct [ ‘School‘ ] = " DPS School"; print "dict [‘Age‘]: ", dict [‘Age‘]; print "dict [‘School‘] : ", dict [‘School‘]; 以上实例输出结果: dict[‘Age‘]: 19 dict[‘School‘]: DPS School
时间: 2024-10-14 21:16:45