Commit 2aa32473 by BellCodeEditor

auto save

parent b3a429ca
Showing with 18 additions and 8 deletions
a=input('2')
b= input('7')
c=eval(a+b)
print(c)
\ No newline at end of file
a=6
b=3
print(36)
\ No newline at end of file
import csv
'''import csv
subject = ["姓名", "语文", "数学", "英语"]
score1 = ["小贝", 98, 99, 92]
score2 = ["聪聪", 95, 91, 95]
\ No newline at end of file
score2 = ["聪聪", 95, 91, 95]
with open('score.csv','w',encoding='utf-8')as file:
write = csv.writer(file)
write.writerow(subject)
write.writerow(score1)
# write.writerow(score2) drtyjkoiuredfghjkkjhgfdsdfghj'''
\ No newline at end of file
import turtle
turtle.pendown()
turtle.circle(50,180)
turtle.up()
#turtle.done()
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