1、变量
Python 变量命名规则
- 变量名必须以字母或者下划线开头。
- 变量名不能以数字开头。
- 变量名只能包含数字字母以及下划线 (A-z, 0-9, and _ )
- 变量名大小写敏感 (firstname, Firstname, FirstName and FIRSTNAME) 是不通的变量)
示例:
firstname first_name _if # 如果我们想用预置的单词作为变量名 year_2021 year2021 current_year_2021 num1
2、内置方法
最常用的一些内置方法有:print(), len(), type(), int(), float(), str(), input(), list(), dict(), min(), max(), sum(), sorted(), open(), file(), help(), and dir();
3、检查数据类型以及转换类型
- 检查数据类型: 我们用 type 检查某个数据或者变量的数据类型
示例:
- 转换:从一个数据类型转化为另一个数据类型。在做数学运算时我们会用到 int(), float(), str(), list, set 首先我们要把其他类型的数据转发为 int 或者 float 不然后报错。 如果我们要把一个数字和字符串连接,要先把数字转换为字符串。
4、数字
Python的数字数据类型:
-
Integers: 整形(负数, 0 和 正数) 数字 示例: ... -3, -2, -1, 0, 1, 2, 3 ...
-
浮点型(小数) 示例: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ...
-
复杂数字 示例: 1 + j, 2 + 4j, 1 - 1j
##习题2-4
num_one = 5
num_two = 4
total = num_one + num_two
print(total)
diff = num_one - num_two
print(diff)
product = num_one * num_two
print(product)
division = num_one / num_two
print(division)
remainder = num_two % num_one
print(remainder)
exp = num_one ** num_two
print(exp)
floor_division = num_one // num_two
print(floor_division)
##习题2-5
r = input('请输入圆的半径:')
s = 3.14*int(r)**2
c = 3.14*int(r)*2
print('圆的面积为:',s)
print('圆的周长为:',c)