摘要:
# \r 默认表示将输出的内容返回到第一个指针,这样的话,后面的内容会覆盖前面的内容 def main(): for i in range(65,91): s="\r{name:s}".format(name=chr(i)) time.sleep(0.5) sys.stdout.write(s) main() # r 的用法 s="... 阅读全文
摘要:
from test import test ''' __mame__ __file__ __cache__ __package__ ''' # import os # 获取这个当前文件的绝对路径 # print(os.path.abspath(__file__)) # abspath=os.path.abspath(__file__) #获取这个文件的名字 # print(os.pa... 阅读全文