Python編寫簡單「跑馬燈」文字

import os import time def main(): words = '杭州金博科技有限公司承辦' while True: os.system('clear') print(words) time.sleep(0.5) words = words[1:] + words[0] if __name__ ==
相關文章
相關標籤/搜索