1.python支持的数学逻辑条件
等于:a==b 不等于:a!=b 小于:a<b 大于:a>b 小于等于:a<=b 大于等于:a>=b
2.if语句
a = 33
b = 200
if b > a:
print("b 大于 a")
b 大于 a
3.缩进
python依靠缩进来定义代码中的范围
if语句中没有缩进,因为会引发错误
a = 33
b = 200
if b > a:
print("b 大于 a")
File "D:\pythonProject1\112.py", line 4
print("b 大于 a")
^
IndentationError: expected an indented block
Process finished with exit code 1
4.elif语句
a = 33
b = 33
if b > a:
print("b 大于 a")
elif a == b:
print("a 等于b")
a 等于b
a = 200
b = 33
if b > a:
print("b 大于 a")
elif a == b:
print("a 等于b")
else:
print("a 小于 b")
a小于b
7.1 函数input() 的工作原理
函数input() 让程序暂停运行,等待用户输入一些文本。获取用户输入后,Python将其存储在一个变量中,以方便你使用。 例如,下面的程序让用户输入一些文本,再将这些文本呈现给用户
name = input("Please enter your name: ")
print("Hello, " + name + "!")
Please enter your name: