python complex函数def_【Python3】Python函数
1. 函數對象
函數是第一類對象,即函數可以當做數據傳遞
可以被引用
可以當做參數傳遞
返回值可以是函數
可以當做容器類型的元素
def foo():
print('from foo')
def index():
print('from index')
dic = {
'foo':foo,
'index':index,
}
while True:
choice = input(">>>>>").strip()
if choice in dic:
dic[choice]()
2. 函數的嵌套
2.1 函數的嵌套的調用
def max(x,y):
return x if x > y else y
def max4(a,b,c,d):
res1 = max(a,b)
res2 = max(res1,c)
res3 = max(res2,d)
return res3
print(max4(234,456,123,789))
2.2 函數的嵌套定義
def f1():
def f2():
def f3():
print("from f3")
f3()
f2()
f1()
# 返回值 from f3 ,即 f3的值
3. 名稱空間
名稱空間:存放名字的地方
名稱空間分為三種
3.1 內置名稱空間
隨著python解釋器的啟動而產生
a = [1,2,3,4,5]
print(max(a))
3.2 全局名稱空間
文件的執行會產生全局名稱空間,指的是文件級別定義的名字都會放入改空間
x = 1
def fun():
x = 2
print(x)
fun()
print(x)
3.3 局部名稱空間
調用函數時會產生局部名稱空間,只在函數調用時臨時綁定,調用結束解綁定
x = 10000
def func():
x = 1
def f1():
print(x)
def f2():
print(x)
f2()
f1()
func()
4. 作用域
作用域即范圍(作用域關系是在函數定義階段就已經固定的,與函數的調用位置無關)
查看作用域:globals(),locals()
4. 閉包函數
def f1():
x = 1
y = 2
def f2():
print(x,y)
return f2
f = f1()
print(f.__closure__[0])
print(f.__closure__[0].cell_contents)
5. 裝飾器
6. 迭代器
7. 生成器
def foo():
print('一')
yield 1
print('二')
yield 2
print('三')
yield 3
print('四')
g = foo()
# for i in g:
# print(i)
print(next(g))
print(next(g))
print(next(g))
print(next(g))
8. 內置函數
-
-
Built-in Functions
-
-
abs()
dict()
help()
min()
stator()
all()
dir()
hex()
next()
slice()
any()
divmod()
id()
object()
sorted()
ascii()
enumerate()
input()
oct()
staticmethod()
bin()
enav()
int()
open()
str()
bool()
exec()
isinstance()
ord()
sun()
bytearray()
filter()
issubclass()
pow()
super()
bytes()
float()
iter()
print()
tuple()
callable()
format()
len()
property()
type()
chr()
frozenset()
list()
range()
vars()
classmethod()
getattr()
locals()
repr()
zip()
compile()
globals()
map()
reversed()
__import__()
complex()
hasattr()
max()
round()
-
delattr()
hash()
memoryview()
set()
-
總結
以上是生活随笔為你收集整理的python complex函数def_【Python3】Python函数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: bigdecimal 保留两位小数_一起
- 下一篇: python怎么封装供java调用_py