语法
条件控制
if
- 返回True或False。
1 2 3 4 5 6 7 8 9 10 11 12 |
// 条件判断 for car in cars: if car == 'bmw': print("bmw") else: print("others") if aet != 'aet': print("test") // < <= > >= |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// 多种条件 age = 18 if age > 14 and age <30: // ... if age > 14 or age < 30: // ... list = ['a', 'b', 'c'] if ('a' in list): // ... if 'd' not in list: // ... |
1 2 3 4 5 6 |
lis = ['a', 'b', 'c'] if lis: for em in lis: print("print " + em + ".") else: print("lis empty.") |
if-else
1 2 3 4 5 |
a = 1 if a > 0: // ... else: // ... |
if-elif-else
1 2 3 4 5 6 7 |
a = 1 if a < 10: // ... elif a < 5: // ... else: // ... |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
a = 'a' if a == 'a': b = 10 if b > 0: // ... elif b > 10: // ... else: // ... elif a == 'b': // ... else: // ... |
while循环
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
i = 0 while i < 5: print(i) i += 1 promt = "'quit' to end the program" while message != 'quit' message = input(promt) print(message) active = True while active: message = input(promt) if (message == 'quit'): active = False else: print(message) |
break
1 2 3 4 5 6 7 |
promt = "'quit' to end the program" while True: message = input(promt) if (message == 'quit') break; else print(message) |
continue
1 2 3 4 5 6 |
cur = 0 while cur < 10: cur += 1 if cur % 2 == 0 continue print(cur) |
字典
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 27 28 29 30 31 32 33 34 35 36 |
// 空的字典 test = {} alien = {'color': 'green', 'age': 20} print(alien['color']) // 添加键值对 alien['x_position'] = 0 alien['y_position'] = 10 // 修改值 alien['color'] = 'red' // 删除键值对 del alien['color'] // 遍历字典 for key, value in alien.items(): print("key: " + key) print("value: " + value) // 遍历键 for attr in alien.keys(): print("attr: " + attr) // 遍历字典中有序的键 for attr in sorted(alien.keys()): print("attr: " + attr) // 遍历值 for value in alien.values(): print("value: " + value) // 遍历不重复的值 for value in set(alien.values()): print("value: " + value) |
嵌套
- 将一系列字典存储在列表中,或者将列表作为值存储在字典中。
1 2 3 4 5 6 7 8 9 10 |
// 字典列表 alien0 = {'color': 'green', 'age': 10} alien1 = {'color': 'red', 'age': 10} alien2 = {'color': 'yellow', 'age': 10} alien_list = [alien0, alien1, alien2] for alien in alien_list: print(alien) |
input
- 让程序暂停,等待用户输入。
1 2 |
age = input("how old are you?") age = int(age) |
取模
- %
函数
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
def get_user(): print("get user") def set_info(username): print(username.title()) set_info('aet') // 关键字实参 def desani(ani_type, ani_name): print(ani_type.title()) print(ani_name.title()) // 下面的效果是一样的 desani(ani_type='aaa', ani_name='bbb') desani(ani_name='bbb', ani_type='aaa') // 返回值 def get_info(first_name, sec_name): full_name = first_name + ' ' + sec_name return full_name.title() // 带缺省值 def get_info1(first_name, sec_name=''): full_name = first_name + ' ' + sec_name return full_name.title() // 返回字典 def build_person(first_name, second_name): person = {'first':first_name, 'second': second_name} return person // 参数为列表 def get_names(names) for name in names: print(name) usernames = ['a', 'b', 'c'] get_names(usernames) // 禁止在函数中修改列表 def get_name_test(names[:]) // ... // 传递任意数量的参数 def make_name(*name): print(name) make_name('a') make_name('a', 'b', 'c') // 使用任意数量的关键字实参 def build_infos(first, second, **user_info): profile = {} profile['first'] = first profile['second'] = second for key,value in user_info.items(): profile[key] = value return profile |
模块
pi.py
1 2 3 4 5 |
def make_pi(size, *infos): pi = {} pi['size'] = size pi['infos'] = infos return pi |
test.py
1 2 3 |
import pi pi.make_pi(12, 'a', 'b', 'c') |
1 2 |
from pi import make_pi pi.make_pi(12, 'a', 'b', 'c') |
1 2 |
form pi import make_pi as mp mp(12, 'a', 'b', 'c') |
1 2 |
import pi as p p.make_pi(12, 'a', 'b', 'c') |
1 2 |
// 导入该模块的所有函数 form pi import * |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Python编程从入门到实践 三05/29
- ♥ breakpad记述:Windows下静态库的编译使用03/15
- ♥ Reading 2021 《抗压力》07/31
- ♥ HelloWorld项目是怎么运行起来的10/02
- ♥ 实用操作二06/15
- ♥ Effective C++_第二篇07/01