python

python命令行交互如何进行变量操作

小樊
81
2024-12-11 12:27:20
栏目: 编程语言

在Python的命令行交互式环境中,可以使用以下方法进行变量操作:

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

0
看了该问题的人还看了