Python 版本:3.6.4
参考网上教程:http://www.runoob.com/python3/python3-basic-syntax.html
开始了啊。
干咱们这行的老规矩,学新语言的第一句就是:
print("Hello, World!")
print默认是换行的,可以用 end="^_^"来实现不换行,如。print( "test", end="," )
注释:
单行用 #,相当于c的//
多行用'''和""",相当于c的/* */
import:
与c语言使用include不同, python 用 import 或者 from...import 来导入相应的模块
导入整个模块: import somemodule
导入某个函数: from somemodule import somefunction
导入多个函数: from somemodule import firstfunc, secondfunc, thirdfunc
导入全部函数: from somemodule import *
我现在喜欢用导入整个模块的写法,怎么省事怎么来。这样做还有一个好处,导入整个模块后,调用模块的函数要加模块的名字,可读性高。
内存占用?效率?摆摆手,暂不考虑。
缩进:
Python用一致的缩进来表示代码块,不使用c语言的{}
缩进出错时会提示:
IndentationError: unindent does not match any outer indentation level
多行语句:
一句代码写完,不需要用分号结尾。如果一句太长要写成多行,用反斜杠\
例外:在 [], {}, 或 () 中的多行语句,不需要使用反斜杠,直接换行继续写。
一个字:人性化。
用户输入:
input("\n\n按下 enter 键后退出。")
偏僻的语法:
同一行中使用多条语句,语句之间使用分号(;)分割
知道就行了,不鼓励这么用,毕竟这样写别人看着也不方便,只是省屏幕空间而已,程序员的显示器不是全高清就是4K,谁在乎那点屏幕空间?
同时为多个变量赋值,如a, b = 1, 2
能看懂就行,别这么用。