例如,我有代碼:
print("Your status - online")
while(True):
print("Searching for server")
我需要清除控制臺,但保留“您的狀態-在線”,所以“搜索服務器”不會重疊。
例如,我有代碼:
print("Your status - online")
while(True):
print("Searching for server")
我需要清除控制臺,但保留“您的狀態-在線”,所以“搜索服務器”不會重疊。
公眾號:1024技術圈
?? 提供互聯網知識和資訊,分享IT前沿技術,熱門資源,大廠面試題 ??
您可以使用回車返回到行的開頭。然后,當您打印時,它將覆蓋上一打印行。