space = input("set user quotation:").strip()
quotation = int(space* 1024 * 1024)
print(quotation)
input获取的式字符串而非数字,运行输入111,不报错也不打印,卡住!!!
2024-03-15 19:32:12
space = input("set user quotation:").strip()
quotation = int(space* 1024 * 1024)
print(quotation)
input获取的式字符串而非数字,运行输入111,不报错也不打印,卡住!!!