在 Python 中,等待幾秒鐘是一項很常見的任務,這可以有多種方法來實現。其中一種方式是使用 “time” 模塊中的 “sleep()” 方法來使程序暫停指定的時間。
import time print('程序開始') time.sleep(4) print('四秒鐘過去了')
在上面的代碼中,我們導入 “time” 模塊并使用 “sleep()” 方法來使程序暫停4秒鐘。這意味著在 “print('四秒鐘過去了')” 語句之前,程序將等待4秒鐘。
還有一種方式是使用 “asyncio” 庫中的 “sleep()” 方法來實現。這種方式通常在異步程序中使用,因為它可以避免程序阻塞。
import asyncio async def wait(): print('程序開始') await asyncio.sleep(4) print('四秒鐘過去了') asyncio.run(wait())
在上面的代碼中,我們使用 “asyncio” 庫中的異步方法來實現等待4秒鐘。與前面的例子不同,這種方式使用 “await” 關鍵字來使程序暫停。同時,我們使用了 “asyncio” 庫的 “run()” 方法來運行異步程序。