当前位置 : 主页 > 编程语言 > python >

python yeild from用法

来源:互联网 收集:自由互联 发布时间:2022-07-13
1. 案例 v_list = [ 1 , 2 , 3 ] def func1 ( v_list ): yield from v_list for a in func1 ( v_list ): print ( a ) 2. 输出结果 H:\Web项目\PythonStudy\venv\Scripts\python.exe H:/Web项目/PythonStudy/study_test/yeild.py 1 2 3 Process fini


1. 案例

v_list = [1,2,3]

def func1(v_list):
yield from v_list


for a in func1(v_list):
print(a)

2. 输出结果

H:\Web项目\PythonStudy\venv\Scripts\python.exe H:/Web项目/PythonStudy/study_test/yeild.py
1
2
3

Process finished with exit code 0


上一篇:python排序算法——冒泡排序
下一篇:没有了
网友评论