摘要:
in 在python中的使用很常见,用处也很多,很强大,这里记录下几种常见的用法。 1、在 for 循环中,获取列表或者元组的每一项: >item是变量 for item in list:2、判断左边的元素是否包含于列表,类似java中的List的contains方法 >in 前面是确定的值,不是变 阅读全文
2021年12月27日
2021年12月26日
摘要:
一、读文件 filename = 'pi_digits.txt' with open(filename) as file_object: contents = file_object.read() >读取 print(contents) lines = file_object.readlines 阅读全文
摘要:
class Car(): def __init__(self, make, model, year): self.make = make self.model = model self.year = year self.odometer_reading = 0 def get_descriptive 阅读全文
2021年12月23日
摘要:
创建子类的实例时,Python首先需要完成的任务是给父类的所有属性赋值。为此,子类的方法__init__()需要父类施以援手。例如,下面来模拟电动汽车。电动汽车是一种特殊的汽车,因此我们可以在前面创建的Car类的基础上创建新类ElectricCar,这样我们就只需为电动汽车特有的属性和行为编写代码。 阅读全文
2021年12月21日
摘要:
(1)向函数传递列表 def greet_users(names): """向列表中的每位用户都发出简单的问候""" for name in names: msg = "Hello, " + name.title() + "!" print(msg) usernames = ['hannah', 阅读全文
摘要:
alien_0 = {'color': 'green', 'points': 5} print(alien_0['color']) >访问字典print(alien_0['points']) 字典类型用大括号,里面是{‘’key‘:’value’} 添加键值 alien_0['x_position' 阅读全文
2021年12月20日
摘要:
1、列表操作类 插入 操作 (1)append() 在末尾追加元素 motorcycles = [] motorcycles.append('honda') (2)insert(index,A) 在任何位置插入 motorcycles = ['honda', 'yamaha', 'suzuki'] 阅读全文
2021年12月19日
摘要:
Ubuntu中安装vmware tools工具 听语音 原创 | 浏览:144371 | 更新:2018-07-12 09:16 | 标签:操作系统 VMWARE 1 2 3 4 5 6 7 分步阅读 在VMware Workstation虚拟机中,如果未安装vmware tools工具,鼠标操作起 阅读全文