python中的运算符及表达式及常用内置函数

知识内容:

1.运算符与表达式

2.for\while初步了解

3.常用内置函数

一、运算符与表达式

python与其他语言一样支持大多数算数运算符、关系运算符、逻辑运算符以及位运算符,并且有和大多数语言一样的运算符优先级。除此之外,还有一些是python独有的运算符。

1.算术运算符

a=10, b=20

python中的运算符及表达式及常用内置函数

2.比较运算符

a=10, b=20

python中的运算符及表达式及常用内置函数

 注:  在python3中不存在<>,只在python2中存在<>

3.赋值运算符

python中的运算符及表达式及常用内置函数

4.逻辑运算符

python中的运算符及表达式及常用内置函数

and两边条件都成立(或都为True)时返回True,而or两边条件只要有一个成立(或只要一个为True)时就返回True

not就是取反,原值为True,not返回False,原值为False,not返回True

 >>> a = 10
>>> b = 20
>>> a
10
>>> b
20
>>> a == 10 and b == 20
True
>>> a == 10 and b == 21
False
>>> a == 10 or b == 21
True
>>> a == 11 or b == 20
True
>>> a == 11 or b == 23
False
>>> a == 0
False
>>> not a == 0
True

5.成员运算符

python中的运算符及表达式及常用内置函数

6.身份运算符

python中的运算符及表达式及常用内置函数

7.位运算

python中的运算符及表达式及常用内置函数

8.运算符优先级

python中的运算符及表达式及常用内置函数

注:

(1)除法在python中有两种运算符: /和//,/在python2中为普通除法(地板除法),/在python3中为真除法,/和//在python2和python3中均为普通除法(地板除法)

示例:

python中的运算符及表达式及常用内置函数

(2) python中很多运算符有多重含义,在程序中运算符的具体含义取决于操作数的类型,将在后面继续介绍。eg: +是一个比较特殊的运算符,除了用于算术加法以外,还可以用于列表、元组、字符串的连接,但不支持不同类型的对象之间相加或连接;  *也是其中比较特殊的一个运算符,不仅可以用于数值乘法,还可以用于列表、字符串、元组等类型,当列表、字符串或元组等类型变量与整数就行*运算时,表示对内容进行重复并返回重复后的新对象

示例:

python中的运算符及表达式及常用内置函数

(3)python中的比较运算符可以连用,并且比较字符串和列表也可以用比较运算符

示例:

python中的运算符及表达式及常用内置函数

(4)python中没有C/C++中的++、--运算符,可以使用+=、-=来代替

 >>> a = 5
>>> a++
File "<stdin>", line 1
a++
^
SyntaxError: invalid syntax
>>> a += 1
>>> a
6
>>> a--
File "<stdin>", line 1
a--
^
SyntaxError: invalid syntax
>>> a-=1
>>> a
5

(5)python3中新增了一个新的矩阵相乘运算符@

示例:

 import numpy  # numpy是用于科学计算的python拓展库需要自行使用pip安装或手动安装

 x = numpy.ones(3)       # ones函数用于生成全1矩阵,参数表示矩阵大小
m = numpy.eye(3)*3 # eye函数用于生成单元矩阵
m[0, 2] = 5 # 设置矩阵上指定位置的值
m[2, 0] = 3
print(x @ m) # 输出结果: [6. 3. 8.]

9.表达式的概念

在python中单个任何类型的对象或常数属于合法表达式,使用上表中的运算符将变量、常量以及对象连接起来的任意组合也属于合法的表达式,请注意逗号(,)在python中不是运算符,而只是一个普通的分隔符

二、for\while初步了解

python中提供了for循环和while循环(注: 在Python中没有do..while循环)

1. for循环

for循环的格式:

for iterating_var in sequence:
statements(s)

2.while循环

while循环的格式:

while 判断条件:
执行语句……

示例:

 # for
# 输出从1到10的整数:
for i in range(1, 11): # range(1, 11)是产生从1到10的整数
print(i, end=' ')
print() # 换行 # while
# 计算1到100的和:
i = 0
number_sum = 0
while i < 100:
i = i + 1
number_sum = number_sum + i
print(number_sum) # 输出结果:
# 1 2 3 4 5 6 7 8 9 10
#

三、常用内置函数

1. 内置函数的概念

python中的内置函数不用导入任何模块即可直接使用,可以在命令行中使用dir(__builtins__)查看所有内置函数

查看所有内置函数:

 # __author__ = "wyb"
# date: 2018/3/7 for item in dir(__builtins__):
print(item)
# python3.6上运行的结果:
# ArithmeticError
# AssertionError
# AttributeError
# BaseException
# BlockingIOError
# BrokenPipeError
# BufferError
# BytesWarning
# ChildProcessError
# ConnectionAbortedError
# ConnectionError
# ConnectionRefusedError
# ConnectionResetError
# DeprecationWarning
# EOFError
# Ellipsis
# EnvironmentError
# Exception
# False
# FileExistsError
# FileNotFoundError
# FloatingPointError
# FutureWarning
# GeneratorExit
# IOError
# ImportError
# ImportWarning
# IndentationError
# IndexError
# InterruptedError
# IsADirectoryError
# KeyError
# KeyboardInterrupt
# LookupError
# MemoryError
# ModuleNotFoundError
# NameError
# None
# NotADirectoryError
# NotImplemented
# NotImplementedError
# OSError
# OverflowError
# PendingDeprecationWarning
# PermissionError
# ProcessLookupError
# RecursionError
# ReferenceError
# ResourceWarning
# RuntimeError
# RuntimeWarning
# StopAsyncIteration
# StopIteration
# SyntaxError
# SyntaxWarning
# SystemError
# SystemExit
# TabError
# TimeoutError
# True
# TypeError
# UnboundLocalError
# UnicodeDecodeError
# UnicodeEncodeError
# UnicodeError
# UnicodeTranslateError
# UnicodeWarning
# UserWarning
# ValueError
# Warning
# WindowsError
# ZeroDivisionError
# __build_class__
# __debug__
# __doc__
# __import__
# __loader__
# __name__
# __package__
# __spec__
# abs
# all
# any
# ascii
# bin
# bool
# bytearray
# bytes
# callable
# chr
# classmethod
# compile
# complex
# copyright
# credits
# delattr
# dict
# dir
# divmod
# enumerate
# eval
# exec
# exit
# filter
# float
# format
# frozenset
# getattr
# globals
# hasattr
# hash
# help
# hex
# id
# input
# int
# isinstance
# issubclass
# iter
# len
# license
# list
# locals
# map
# max
# memoryview
# min
# next
# object
# oct
# open
# ord
# pow
# print
# property
# quit
# range
# repr
# reversed
# round
# set
# setattr
# slice
# sorted
# staticmethod
# str
# sum
# super
# tuple
# type
# vars
zip

2.python中常见及常用的内置函数

python中的运算符及表达式及常用内置函数

python中的运算符及表达式及常用内置函数

python中的运算符及表达式及常用内置函数

python中的运算符及表达式及常用内置函数

python中的运算符及表达式及常用内置函数

python中的运算符及表达式及常用内置函数

注:

dir()函数可以查看指定模块中包含的所有成员或者指定对象类型所支持的操作;help()函数则返回指定模块或函数的说明文档

常用内置函数示例:

 # __author__ = "wyb"
# date: 2018/3/7 number = -3
print(abs(number)) # 输出结果: 3 print(all([0, -8, 3])) # 输出结果: False
print(any([0, -8, 3])) # 输出结果: True value = eval("3+2") # 计算字符串中表达式的值并返回
print(value) # 输出结果: 5 help(print) # 输出结果: print的文档(帮助信息) x = 3
y = float(x) # 将其他类型转换成浮点型
z = str(x) # 将其他类型转换成字符串类型
print(x, y, z) # 输出结果: 3 3.0 3
print(id(x), id(y), id(z)) # 输出x,y,z的地址信息 s = "Hello, python!"
n = len(s) # 求字符串的长度
print(n) # 输出结果: 14 p = pow(3, 2) # 求3的2次方
print(p) # 输出结果: 9 # zip(): 将可迭代的对象作为参数,将对象中对应的元素
# 打包成一个元组,然后返回这些元组组成的列表,实例如下:
a = [1, 2, 3]
b = [4, 5, 6]
zipped = zip(a, b) # zipped -> [(1,4),(2,5),(3,6)]
print(zipped)
上一篇:Python中的装饰器的简单介绍02


下一篇:gj2 python中一切皆对象