如何在 Python3 中使用变量?
变量是内存中某个位置的名称。它可以用来保存一个值,并引用计算机程序中存储的值。解释器分配内存并决定什么可以存储在保留的内存中。因此,通过为变量分配不同的数据类型,您可以在这些变量中存储整数、字符串、小数、复数。Python 3 中的赋值运算符是一个等号(=)。该运算符将右侧的值赋给左侧的变量。
示例 1 : 给变量赋值:
# this is a integer type variable
number = 123456
# this is a string type variable
sentence = "this is a string"
# print integer
print(number)
# print string
print(sentence)
输出:
123456
this is a string
版权属于:月萌API www.moonapi.com,转载请注明出处