我是一个初学者编码,所以我对python不太了解,但如果你回答这个问题,将不胜感激。
这是我到目前为止所拥有的:
import turtle
def clear1():
import os
os.system('cls' if os.name == 'nt' else "printf '\033c'")
然后是一堆乌龟代码。然后在海龟代码之后:
choice = input("Want to get started? ")
while choice == "yes" or choice == "Yes":
clear1()
输出:
NotImplementedError: os is not yet implemented in Skulpt on line 1
而且我很困惑,因为我在不同的项目中使用完全相同的算法并且它有效
链接到当前项目:https ://repl.it/@WeirdDragon/RPS#main.py
链接到它工作的项目:https ://repl.it/@WeirdDragon/Fortune-teller#main.py