initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

13
Python/OOP2/test.py Normal file
View File

@ -0,0 +1,13 @@
import asyncio
async def sleep_print(i: str) -> None:
print(i)
await asyncio.sleep(5)
async def main() -> int:
await asyncio.gather(*[sleep_print(i) for i in range(5)])
asyncio.run(main())