Commit 3386dc3a by BellCodeEditor

save project

parent baa05441
a = []
def ab():
b = input()
if b == "q":
break()
else:
a.append(b)
while 1:
ab()
\ No newline at end of file
a = []
while True:
print("~"*100)
b = input("请输入:")
if b == "q":
break
try:
b = int(b)
except:
print("错")
else:
a.append(b)
finally:
print("~"*100)
return a
def abcd(s):
x = 0
for i in s:
x += i
return x
# n = abcd(ab())
# print(n)
# print(ab())
\ No newline at end of file
a=open(r'C:\Users\admin\Desktop\小黑子.doc',"w")
a.write('小黑子,3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000本')
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment