🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ### 声明一个变量 ~~~ name = "chengchao"; print(name); ~~~ ### 1.输出hello world ~~~ //写一个01.py的文件 print("hello world") ~~~ ~~~ //在命令行中输入 python 01.py ~~~ ### 2.输入输出 ~~~ print("hello world"); name = input("chengchao"); print(name); ~~~ ### 3.没有括号的if语法 ~~~ if True: print("true"); else: print("false"); ~~~ ### 4.多行语句 ~~~ a = 10; b = 20; c = 30; total = a+\ b+c; print(total); ~~~ 4.1 #### 在 [], {}, 或 () 中的多行语句,不需要使用反斜杠(\) ~~~ arr = [1,2, 3]; print(arr[0]); ~~~ ### 5.多个变量赋值 ~~~ a, b, c = 1, 2, "runoob" ~~~