1. 类的定义
将程序任务涉及到的事物抽象为一个个的对象以这些对象为中心来写程序
类、实例 封装、继承、多态
- 什么是类,什么是实例?
狗是某一类动物,他们具有相同、相似的属性 我家有一只狗,叫旺财 你家有一只狗,叫大黄 他们都有四条腿,一条尾巴 旺财和大黄被生出来后,互相不会影响旺财吃胖了,体重增加了不会影响大黄 如果某一天上帝决定给狗这个种类的生物都增加一条尾巴那么旺财和大黄会同时变成两条尾巴
其中:
原创2024年5月21日...大约 2 分钟
The site is used to record what I have seen and learned in my lifetime, including but not limited to computers, artificial intelligence, mathematics, pop culture, travel, photography, music, aesthetic accumulation etc.
将程序任务涉及到的事物抽象为一个个的对象以这些对象为中心来写程序
类、实例 封装、继承、多态
狗是某一类动物,他们具有相同、相似的属性 我家有一只狗,叫旺财 你家有一只狗,叫大黄 他们都有四条腿,一条尾巴 旺财和大黄被生出来后,互相不会影响旺财吃胖了,体重增加了不会影响大黄 如果某一天上帝决定给狗这个种类的生物都增加一条尾巴那么旺财和大黄会同时变成两条尾巴
其中:
计算机中的函数————代码片段
students_list = ['lilei', 'hanmeimei', 'madongmei']
for student in students_list:
print(student)
# output
lilei
hanmeimei
madongmei
while not user_answer_correct:
user_gender = input('请输入您的性别(F/M):')
if user_gender == 'F':
print('您是女生')
user_answer_correct = True
elif user_gender == 'M':
print('你是男生')
user_answer_correct = True
else:
print('wrong')
在 python 中相同位置的代码表示他们是同一个代码块
用四个空格或者一个 Tab 来表示缩进(切忌混用!)
condition = True
while condition:
a = 1
if a < 10:
print(f'a>>>{a}')
意义:表示判断中的是与否。一般用于条件测试中。
In [1]: a = True
In [2]: a
Out[2]: True
In [3]: 10 < 5
Out[3]: False
In [4]: 10 > 8
Out[4]: True
我们有以下联系人:
姓名 | 手机号 |
---|---|
李雷 | 123456 |
韩梅梅 | 132456 |
大卫 | 154389 |
Mr.Liu | 131452 |
Bornforthis | 180595 |
Alexa | 131559 |
引言: 这篇文章旨在为 Ryan 本人服务
# 右对齐
a = 123
print('{0:_>4}'.format(a)) # _123
b = 1111
print('{0:&>10}'.format(b)) # &&&&&&1111
# 左对齐
a = 'a'
print('{0:*<5}'.format(a)) # a****
# 居中
a = 'middle'
print('{0:#^16}'.format(a)) # #####middle#####
print('{0:#^15}'.format(a)) # ####middle#####
print('{0:#^17}'.format(a)) # #####middle######