摘要:
7.1 import tokenize import keyword from io import BytesIO def convert_python_file(source_path, target_path): with open(source_path, 'rb') as file: tok 阅读全文
摘要:
5.1 def drawaq(n): line = 3n+1 for i in range(1,line+1): if i%3 == 1: print(n"+ ",end="") print("+") else: print("| "*n,end="") print("|") n = eval(in 阅读全文
摘要:
3.19 import time t = time.gmtime() print(time.strftime("%Y-%m-%d",t)) 3.20 import time t = time.gmtime() print(time.strftime("%Y-%m-%d",t)) print(time 阅读全文