(二)Python入门笔记(语法、变量)
程序员文章站
2024-03-23 08:19:31
...
没想到python是这个样子。。。。。。
一、语法
- Python 使用缩进来指示代码块,且相同代码块中的空格数量相同;
- 注释以 # 开头,Python 将其余部分作为注释呈现,也可以用来阻止代码执行(多行注释用三引号""");
"""
This
is a comment.
"""
#This is a comment.
if 5 > 2:
print("Five is greater than two!")#This is a comment.
print("Five is greater than two!")
#print("Five is greater than two!")
二、变量
- Python 没有声明变量的命令,变量不需要使用任何特定类型声明,甚至可以在设置后更改其类型。
x = 5 # x is of type int
x = "Steve" # x is now of type str
print(x)
- Python 变量命名规则:
变量名必须以字母或下划线字符开头
变量名称不能以数字开头
变量名只能包含字母数字字符和下划线(A-z、0-9 和 _)
变量名称区分大小写(age、Age 和 AGE 是三个不同的变量)
请记住,变量名称区分大小写 - 赋值、输出:
x, y, z = "nice", "Banana", "Cherry"
x = y = z = "Orange"
print("Python is " + x)
x = "Python is "
y = "awesome"
z = x + y
print(z)
- 如果要在函数内部更改全局变量,请使用 global 关键字:
x = "awesome"
def myfunc():#def是个啥?
global x
x = "fantastic"
myfunc()
print("Python is " + x)
上一篇: Scala基础入门(二)