You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Сопрограммы (корутины)
|
|
def grep(pattern):
|
|
print("start grep")
|
|
while True:
|
|
line = yield
|
|
|
|
if pattern in line:
|
|
print(line)
|
|
|
|
g = grep("python")
|
|
next(g)
|
|
g.send("golang is better?")
|
|
g.send("python is simple!") |