python3笔记

python3笔记

源于:https://www.runoob.com/python3/python3-tutorial.html

Python 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。

基础语法


编码

默认情况下 ,python3源码文件以UTF-8编码,所有字符串都是unicode字符串。当然可以另外指定不同的编码:

# -*- coding: cp-1252 -*-

 上述定义允许在源文件中使用 Windows-1252 字符集中的字符编码,对应适合语言为保加利亚语、白罗斯语、马其顿语、俄语、塞尔维亚语。


标识符

  • 第一个字符必须是字母表中字母或下划线_。
  • 标识符的其他的部分由字母、数字和下划线组成。
  • 标识符对大小写敏感。

在python3中,可以用中文作为变量名,非ASCII标识符也是允许的了。


python保留字

>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', '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'] >>>

注释

python中单行注释以#开头

#!/usr/bin/python
#第一个注释

print ("hello,world!")  #第二个注释

 执行上述代码,输出结果为

hello,world!

多行注释可以用多个#号,还有'''和""" 

#!/usr/bin/python

#第一个注释
#第二个注释
'''
第三个注释
第四个注释
'''

"""
第五个注释
第六个注释
"""
print ("hello,world!")

 行与缩进

python最具特色的就是使用缩进来表示代码块,不需要使用大括号{}。

缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。实例如下:

if  Ture:
    print ("Ture")
else:
    print ("False")

多行语句

python通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠()来实现多行语句,例如:

total = item_one + 
           item_two + 
           item_three

在[]、{}、或()中的多行语句,不需要使用反斜杠(),例如:

total = ['item_one', 'item_two',
            'item_four','item_five']

 数字(number)类型

python中数字有四种类型:整数、布尔型、浮点数和复数。

  • int(整数),如1,只有一种整数类型int,表示为长整型,没有python2中的long。
  • bool(布尔),如True。
  • float(浮点数),如1.23、3E-2
  • complex(复数),如1+2j、1.1+2.2j

 字符串

  • python中单引号和双引号使用完全相同。
  • 使用三引号('''或""")可以指定一个多行字符串。
  • 转义符""
  • 反斜杠可以用来转义,使用r可以让反斜杠不发生转义。如 r"this is a line with "则 会显示,并不是换行。
  • 按字面意思级联字符串,如"this" "is" "string"会被自动转换为 this is string。
  • 字符串可以用 + 运算符连接在一起,用 * 运算符重复。
  • python中的字符串有两种索引方式,从左往右以0开始,从右往左以-1开始。
  • python中的字符串不能改变。
  • python没有单独的字符类型,一个字符就是长度为1的字符串。
  • 字符串的截取的语法格式如下: 变量[头下标:尾小标:步长]
#!/usr/bin/python

str='hello, world!'

print(str)                      #输出字符
print(str[0:-1])                #输出第一个到倒数第二个的所有字符
print(str[0])                   #输出字符串的第一个字符
print(str[3:7])                 #输出从第四个到第八个的字符
print(str[3:])                  #输出从第三个开始后的所有字符
print(str * 2)                  #输出字符串两次
print(str + '你好')             #连接字符串

print('-------------------')

print('hello,
world!')         #使用反斜杠()+n转义特殊字符
print(r'hello,
world!')        #在字符串前面添加一个 r,表示原始字符串,不会发生转义

 这里的 r 指 raw,即 raw string。

 输出结果为:

hello, world!
hello, world
h
lo, 
lo, world!
hello, world!hello, world!
hello, world!你好
-------------------
hello,
world!
hello,
world!

 空行

函数之间或类的方法之间用空行分隔,表示一段新的代码的开始。类和函数入口之间也用一行空行分隔,以突出函数入口的开始。

空行与代码缩进不同,空行并不是python语法的一部分。书写时不插入空行,python解释器运行也不会出错。但是空行的作用在于分隔两段不同功能或含义的代码,便于日后代码维护或重构。

 记住:空行也是程序代码的一部分。


等待用户输入

执行下面的程序在按回车键后就会等待用户输入:

>>> input("

按下 enter 键后退出。")


按下 enter 键后退出。dfadsfasdfasdfasdfafsdasdfasdfasdfasdfasdfasdfasdf
'dfadsfasdfasdfasdfafsdasdfasdfasdfasdfasdfasdfasdf'
>>>

以上代码中," "在结果输出前会输出两个新的空行。一旦用户按下enter键时,程序将退出。


同一行显示多条语句

python可以在同一行中使用多条语句,语句之间使用分号(;)分割,以下是一个简单的实例:

#!/usr/bin/python

import sys; x = 'test'; sys.stdout.write(x + '
')

使用脚本执行上述代码,输出结果为:

test

使用交互式命令行执行,输出结果为:

>>> import sys; x = 'test'; sys.stdout.write(x + '
')
test
5
>>>

此处5表示字符数。


多个语句构成代码组

缩进相同的一组语句构成一个代码块,我们称之为代码组。

像if、while、def和class这样的复合语句,首行以关键字开始,以冒号(:)结束,该行之后的一行或多行代码构成代码组。

我们将首行及后面的代码组称为一个字句(clause)。

如下实例:

if  expression :
    suite
elif  expression :
    suite
else  :
    suite

print输出

print默认输出是换行的,如果要实现不换行需要在变量末尾加上end=""

#!/usr/bin/python

x="a"
y="b"

#换行输出
print(x)
print(y)

print(--------------------------)
#不换行输出
print( x, end=" " )
print( y, end="" )
print()

执行结果为

a
b
--------------------------
a b

import与from...import

在python中import或者from...import来导入相应的模块

将整个模块(somemodule)导入,格式为:import somemodule

从某个模块中导入某个函数,格式为:from somemodule import somefunction

从某个模块中导入多个函数,格式为:from somemodule importy firstfunc, secondfunc, thirdfunc

将某个模块中的全部函数导入,格式为:from somemodule import *

#!/usr/bin/python

import sys
print('================python import mode==============')
print ('命令行参数为:')
for i in sys.argv:
        print (i)
print ('
 python 路径为', sys.path)


from sys import argv,path  #导入特定的成员

print('================python import mode==============')
print('path:',path)   #因为已经导入path成员,所以此处引用时不需要加sys.path

执行结果

================python import mode==============
命令行参数为:
test3.py

 python 路径为 ['/root/python', '/usr/local/python3/lib/python37.zip', '/usr/local/python3/lib/python3.7', '/usr/local/python3/lib/python3.7/lib-dynload', '/usr/local/python3/lib/python3.7/site-packages']
================python import mode==============
path: ['/root/python', '/usr/local/python3/lib/python37.zip', '/usr/local/python3/lib/python3.7', '/usr/local/python3/lib/python3.7/lib-dynload', '/usr/local/python3/lib/python3.7/site-packages']

命令行参数

很多程序可以执行一些操作来查看一些基本信息,Python可以使用-h参数查看各参数帮助信息:

[root@centos6 python]# python -h
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Options and arguments (and corresponding environment variables):
-b     : issue warnings about str(bytes_instance), str(bytearray_instance)
         and comparing bytes/bytearray with str. (-bb: issue errors)
-B     : don't write .pyc files on import; also PYTHONDONTWRITEBYTECODE=x
-c cmd : program passed in as string (terminates option list)
-d     : debug output from parser; also PYTHONDEBUG=x
-E     : ignore PYTHON* environment variables (such as PYTHONPATH)
-h     : print this help message and exit (also --help)
-i     : inspect interactively after running script; forces a prompt even
         if stdin does not appear to be a terminal; also PYTHONINSPECT=x
-I     : isolate Python from the user's environment (implies -E and -s)
-m mod : run library module as a script (terminates option list)
-O     : remove assert and __debug__-dependent statements; add .opt-1 before
         .pyc extension; also PYTHONOPTIMIZE=x
-OO    : do -O changes and also discard docstrings; add .opt-2 before
         .pyc extension
-q     : don't print version and copyright messages on interactive startup
-s     : don't add user site directory to sys.path; also PYTHONNOUSERSITE
-S     : don't imply 'import site' on initialization
-u     : force the stdout and stderr streams to be unbuffered;
         this option has no effect on stdin; also PYTHONUNBUFFERED=x
-v     : verbose (trace import statements); also PYTHONVERBOSE=x
         can be supplied multiple times to increase verbosity
-V     : print the Python version number and exit (also --version)
         when given twice, print more information about the build
-W arg : warning control; arg is action:message:category:module:lineno
         also PYTHONWARNINGS=arg
-x     : skip first line of source, allowing use of non-Unix forms of #!cmd
-X opt : set implementation-specific option
--check-hash-based-pycs always|default|never:
    control how Python invalidates hash-based .pyc files
file   : program read from script file
-      : program read from stdin (default; interactive mode if a tty)
arg ...: arguments passed to program in sys.argv[1:]

Other environment variables:
PYTHONSTARTUP: file executed on interactive startup (no default)
PYTHONPATH   : ':'-separated list of directories prefixed to the
               default module search path.  The result is sys.path.
PYTHONHOME   : alternate <prefix> directory (or <prefix>:<exec_prefix>).
               The default module search path uses <prefix>/lib/pythonX.X.
PYTHONCASEOK : ignore case in 'import' statements (Windows).
PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.
PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.
PYTHONHASHSEED: if this variable is set to 'random', a random value is used
   to seed the hashes of str, bytes and datetime objects.  It can also be
   set to an integer in the range [0,4294967295] to get hash values with a
   predictable seed.
PYTHONMALLOC: set the Python memory allocators and/or install debug hooks
   on Python memory allocators. Use PYTHONMALLOC=debug to install debug
   hooks.
PYTHONCOERCECLOCALE: if this variable is set to 0, it disables the locale
   coercion behavior. Use PYTHONCOERCECLOCALE=warn to request display of
   locale coercion and locale compatibility warnings on stderr.
PYTHONDEVMODE: enable the development mode.
[root@centos6 python]# 
原文地址:https://www.cnblogs.com/zwj-linux/p/11806379.html