feat: python

This commit is contained in:
heyong.fu
2026-05-06 11:21:42 +08:00
commit 0abf1ad3c4
62 changed files with 7598 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import asyncio
async def my_coroutine():
print("协程开始执行")
await asyncio.sleep(10)
print("协程结束")
return "协程结果"
asyncio.run(my_coroutine())