python程序不知道怎么编写,希望大佬可以指教!

文本进度条。请打印如下形式的进度条。

Starting ··· Done!

楼上正解,python2 直接print + 要输出打印的内容,python3需要用()将要输出打印的内容括起来

for i in range(10):
    print("\r%s"%i,end="")

python3版本
print("Starting ··· Done!")
python2版本
print "Starting ··· Done!"