在c#中,我可以简单地使用Console.Clear();清除控制台。有没有办法像在c#中那样简单地在python中清除控制台?
您可以这样使用os:
import os os.system('cls')