import os if os.name == "posix": os.system("clear") elif os.name == "nt": os.system("cls") else: print("未能識別的作業系統。") #《程式語言教學誌》的範例 ...
確定! 回上一頁