设置变量并输出
[root@ldpbzhaonan py]$ cat var01.py
str1=hello
str2=world
printf "${str1} ${str2} \n"
printf '${str1} ${str2} \n'
\n就是代表换行,使用printf输出的话,没有自动换行。
不使用换行如下图·显示
[root@ldpbzhaonan py]$ cat var02.py
name = "ldp"
age = 18
address = "城市"
print("我的名字是:",name)
print("我的年龄是:",age+1)
print("我的住址是:",address)
[root@ldpbzhaonan py]$ python var02.py
我的名字是: ldp
我的年龄是: 19
我的住址是: 城市
变量为数字的话,不用使用引号,负责不能运算。
这里的话,使用汉语后面需要使用中文的冒号,后面使用英文的逗号
进入python,并退出
[root@ldpbzhaonan py]$ python
Python 3.9.18 (main, Jan 24 2024, 00:00:00)
[GCC 11.4.1 20231218 (Red Hat 11.4.1-3)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
查看系统自带的python
[root@ldpbzhaonan py]$ python
python
python3
python3.9