跳转至

『Python基础』3. 变量

一、概述

变量,顾名思义,可以改变的量。像是挖了个槽,给它起个名,然后可以把各种值塞到这个槽里。

把值塞到这个槽里的行为叫做 赋值,使用 = 来执行,它会把右侧的表达式的结果赋给左侧的变量。

例:

Python
name = 'AzurIce' # 将 'AzurIce' 这个值赋给 name变量
print(f'My mame is {name}')

输出:

My Name is AzurIce

Python
1
2
3
4
name = 'Asurx' # 将 'Asurx' 这个值赋给 name变量
print(f'My mame is {name}')
name = 'AzurIce' # 将 'AzurIce' 这个值赋给 name变量
print(f'Now my mame is {name}')

输出:

My name is Asurx

Now my name is AzurIce

二、存储数据的类型

三、 类型转换

1. 隐式

Python
# int 与 float 做运算的结果为 float
# 除法运算的结果为 float
# 整除运算的结果为 int
print(type(9 + 9.99)) # 输出 <class 'float'>
print(type(9 * 9.99)) # 输出 <class 'float'>
print(type(9 / 8))    # 输出 <class 'float'>
print(type(9.9 // 8))    # 输出 <class 'float'>

# 不能自动转换
print(type('??' + 9)) # 报错

2. 显式

Python
类型名() # 将 值 转换为 类型名 类型
Python
1
2
3
4
5
print(int(True))  # 1
print(int(False)) # 0
print(int(9.8))   # 9
print(int("98"))  # 98
print(int("9.8")) # 报错
Python
1
2
3
4
5
print(float(True))  # 1.0
print(float(False)) # 0.0
print(float(9.8))   # 9.8
print(float("98"))  # 98.0
print(float("9.8")) # 9.8
Python
1
2
3
print(str(True))  # True
print(str(False)) # False
print(str(9.8))   # 9.8

其实直接用 print 打印时,就隐式的转换为了 str:

Python
print(True) # 相当于 print(str(True))
print(999)  # 相当于 print(str(999))

注意 bool:

Python
1
2
3
4
5
6
7
print(bool(9.8))   # True
print(bool(0.0))   # False
print(bool(0))     # False
print(bool(-1))     # True
print(bool("9.8")) # True
print(bool("0"))   # True
print(bool(""))    # False

对于字符串,非空即为 True

对于数字,非0即为 True

四、一些例子

1. 计算x的阶乘

Python
1
2
3
4
5
6
x = int(input())
ans = 1
while x:
    ans = ans * x
    x = x - 1;
print(ans)

2. 计算1到n的自然数平方和

Python
1
2
3
4
5
6
x = int(input())
ans = 0
while x:
    ans = ans + (x ** 2)
    x = x - 1;
print(ans)

评论