Commit 24bb29e0 by BellCodeEditor

save project

parent 9972038f
Showing with 6 additions and 5 deletions
import csv
def peach(n):
if n == 10:
return 1
num = (peach(n+1)+1)*2
return num
data = [["姓名", "语文", "数学", "英语"],
["小贝", 98, 99, 92],
["聪聪", 95, 91, 95]]
\ No newline at end of file
peach_num = peach(10)
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