变量
Python 中的变量不是静态类型。
x = 42
print(f"I'm a number: {x}")
x = "Whoosh, I'm a string now"
print(x)
第一个 print 函数使用了 f-string 来格式化字符串。
在 Python 中,变量名可以由任意长度的大、小写字母 A-Z, a-z
,数字 0-9
和下划线 _
组成。虽然变量名可以包含数字,但第一个字符不能是数字。
另外,Python 语言保留了一些关键字供自身使用。变量名不可以与保留关键字冲突。
关键字列表如下:
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class',
'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global',
'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return',
'try', 'while', 'with', 'yield']
>>>
代码挑战
尝试修改编辑器中提供的代码,使其打印
The type of variable x is <class 'set'>
。
Loading...
> 此处输出代码运行结果