Python 基础
1、编码
默认情况下,Python 3源码文件以UTF-8编码,所有字符串都是unicode字符串。
当然你也可以为源码文件指定不同的编码:# -*- coding: cp-1252 -*-
2、标识符
第一个字符必须是字母表中字母或下划线'_'。
标识符的其他的部分有字母、数字和下划线组成。
标识符对大小写敏感。
3、python保留字
保留字即关键字,我们不能把它们用作任何标识符名称。Python的标准库提供了一个keyword模块,可以输出当前版本的所有关键字:
>import keyword
>keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', ‘yield']
4、注释
Python中单行注释以#开头,实例如下:
#!/usr/bin/python3
#第一个注释
print("Hello, Python!")#第二个注释
多行注释‘’’XXXX ‘’’:
"""
这里是多行注释
"""
5、行与缩进
python最具特色的就是使用缩进来表示代码块,不需要使用大括号({})。
缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。实例如下:
if True:
print("Answer")
print("True")
else:
print("Answer")
print("False")#缩进不一致,会导致运行错误
6、多行语句
Python通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠(\)来实现多行语句,例如:
total=item_one+\
item_two+\
item_three
在[], {},或()中的多行语句,不需要使用反斜杠(\),例如:
total = ['item_one', 'item_two', 'item_three',
'item_four', ‘item_five']
7、字符串
python中单引号和双引号使用完全相同。
使用三引号('''或""")可以指定一个多行字符串。
转义符'\'
自然字符串,通过在字符串前加r或R。如r"this is a line with \n"则\n会显示,并不是换行。
python允许处理unicode字符串,加前缀u或U,如u"this is an unicode string"。
字符串是不可变的。
按字面意义级联字符串,如"this " "is " "string"会被自动转换为this is string。
word='字符串'
sentence="这是一个句子。"
paragraph="""这是一个段落,可以由多行组成"""
8、空行
函数之间或类的方法之间用空行分隔,表示一段新的代码的开始。类和函数入口之间也用一行空行分隔,以突出函数入口的开始。
空行与代码缩进不同,空行并不是Python语法的一部分。书写时不插入空行,Python解释器运行也不会出错。但是空行的作用在于分隔两段不同功能或含义的代码,便于日后代码的维护或重构。
记住:空行也是程序代码的一部分
9、输入与输出
输入input()括号后面可以加显示参数
输出print()将需要显示的东西放在括号里就可以
#!/usr/bin/python3
a=input('\n\n\n\n Enter over!!!')
print(a,end=“”)
#print默认输出是换行的,如果要实现不换行需要在变量末尾加上end=“":
10、同一行显示多条语句
Python可以在同一行中使用多条语句,语句之间使用分号(;)分割,以下是一个简单的实例:
import sys; x = ‘john'; sys.stdout.write(x+x+x);print(‘good’)
Result:
johnjohnjohngood
11、Import & from Import
在python用import或者from...import来导入相应的模块。
将整个模块(somemodule)导入,格式为:import somemodule
从某个模块中导入某个函数,格式为:from somemodule import somefunction
从某个模块中导入多个函数,格式为:from somemodule import firstfunc, secondfunc, thirdfunc
将某个模块中的全部函数导入,格式为:from somemodule import *
导入sys模块
import sys print('================Python import mode=========================='); print ('命令行参数为:') for i in sys.argv: print (i) print ('\n python路径为',sys.path)
导入sys模块的argv,path成员
from sys import argv,path #导入特定的成员print('================python from import===================================') print('path:',path) #因为已经导入path成员,所以此处引用时不需要加sys.path
12、命令行参数
很多程序可以执行一些操作来查看一些基本信息,Python可以使用-h参数查看各参数帮助信息:
$ python -h
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Options and arguments (and corresponding environment variables):
-c cmd : program passed in as string (terminates option list)
-d : debug output from parser (also PYTHONDEBUG=x)
-E : ignore environment variables (such as PYTHONPATH)
-h : print this help message and exit
欲知详情后续,且听下回分解~
领取专属 10元无门槛券
私享最新 技术干货