Skip to content

Commit 0d093f1

Browse files
committed
[Chore]: Add README
1 parent 55c9003 commit 0d093f1

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python3
2+
3+
import asyncio
4+
5+
async_generator = __import__('0-async_generator').async_generator
6+
7+
async def print_yielded_values():
8+
result = []
9+
async for i in async_generator():
10+
result.append(i)
11+
print(result)
12+
13+
asyncio.run(print_yielded_values())

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Python is a versatile and powerful programming language that offers a wide range
66

77
## Roadmap
88
[0x01](0x00-python_variable_annotations): Variable Annotations
9+
910
[0x02](0x01-python_async_function): Concurrent programming using asyncio
11+
1012
[0x03](0x02-python_async_comprehension): Asynchronous generators
1113

1214

0 commit comments

Comments
 (0)