在Python的命令行交互式环境中,可以使用以下方法进行变量操作:
>>> x = 10
>>> y = "Hello, World!"
>>> print(x)
10
>>> print(y)
Hello, World!
>>> x = 20
>>> y = "你好,世界!"
>>> z = x + y
>>> print(z)
31
del
命令删除变量:>>> del x
>>> del y
type()
函数查看变量的类型:>>> type(x)
<class 'int'>
>>> type(y)
<class 'str'>
input()
函数接收用户输入并将其赋给变量:>>> name = input("请输入你的名字:")
请输入你的名字:John
>>> age = int(input("请输入你的年龄:"))
请输入你的年龄:25
if
语句进行条件判断:>>> if age >= 18:
... print("成年人")
... else:
... print("未成年人")
...
成年人
for
循环遍历序列(如列表、元组、字符串):>>> for letter in y:
... print(letter)
...
H
e
l
l
o
,
W
o
r
l
d
!
while
循环进行条件判断:>>> count = 0
>>> while count < 5:
... print(count)
... count += 1
...
0
1
2
3
4