Python yield
语句
生成器是使用 Python 中的 yield
语句定义的。一般来说,它会将一个普通的 Python 函数转换成一个生成器。
yield
语句提取函数,并将值返回给函数调用方,然后从停止的地方重新启动。yield
语句可以多次调用。而 return 语句结束函数的执行并将值返回给调用者。没有它,函数什么也不返回。在 Python 生成器中,yield 函数用于替换将值发送回用户而不破坏局部变量的返回函数。
什么是生成器?
Python 生成器被用作生成迭代器的方法。生成器已经自动处理了任务。生成器可以被定义为向调用者返回生成器对象的特殊函数。
简单地说,生成器指的是返回迭代器的函数,我们可以对迭代器进行迭代。在 Python 中,创建生成器非常容易,它使用 yield
语句而不是 return 语句。
例 1:
# Python Code for using yield statement
def myfunction(a, b):
add = a + b
yield add
sub = a - b
yield sub
mul = a * b
yield mul
div = a % b
yield div
# generator runs with for loop for getting all values
for value in myfunction(49,45):
print(value)
输出:
94
4
2205
1.08
例 2:
# Python code for using the yield statement
def printoutput(String) :
for i in String:
if i == "a":
yield i
# string initialization
String = "Tutorial and examples"
ans = 0
print ("The number of 'a' in the string is : ", end = "" )
String = String.strip()
for j in printoutput(String):
ans = ans + 1
print (ans)
输出:
The number of 'a' in the string is : 3
Python return
语句
return 语句通常用于结束执行,并将值返回给调用者。return 语句可以返回所有类型的值,当没有表达式传递给 return 语句时,它什么也不返回。一个函数中可以有多个return
语句,但是对于该函数的任何指定调用,只调用一个语句。
我们可以看到一个 return 语句放在函数块的末尾,用于返回函数内部所有语句执行的最终输出。此外,可以在前面的函数块中看到,该函数用于停止块中所有后续语句的执行。调用者处的程序执行通过return
语句快速重启。当未指定值时,它不返回任何值。
例 1:
# Python code for
#demonstrating use of return statement
def myfunc(a, b):
add = a + b
sub = a - b
mul = a * b
div = a % b
return(add, sub, mul, div)
# Getting return value and printing the output
output = myfunc(49,45)
print("Addition: ", output[0])
print("Subtraction: ", output[0])
print("Multiplication: ", output[0])
print("Division: ", output[0])
输出:
Addition: 94
Subtraction: 4
Multiplication: 2205
Division: 1.08
例 2:
# Python code for
#demonstrating use of return statement
class check:
def __init__(self):
self.str = "Tutorial and examples"
self.x = "Kaushal"
# Object of test will be returned by this function
def fun():
return check()
# Driver code for checking the above method
t = fun()
print(t.str)
print(t.x)
输出:
Tutorial and examples
Kaushal
收益率和收益率之间的差异报表
| 收益率报表 | return
语句 | | Yield 返回生成器对象。 | 将结果返回给调用方。 | | 它可以运行多次。 | 它只运行一次。 | | 代码可以在 yield
语句之后的下一个函数调用中执行。 | 代码不会在 return 语句后执行。 | | 该语句可以从停止或暂停的地方继续。 | 此语句中的函数调用只从头开始运行函数。 | | yield
语句提取函数并将值返回给函数调用方。 | return 语句退出执行,并将值返回给调用方。 |
结论
在上面的文章中,我们已经看到了回报和收益报表的差异。此外,我们已经理解了这两种语句的概念,并知道如何在 Python 程序中使用它们。