lunarflu HF staff commited on
Commit
aa9e5d0
1 Parent(s): f7740d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -266,7 +266,14 @@ async def restore_exp(ctx):
266
 
267
  # if not, create new record
268
  length = len(worksheet.col_values(1))
269
- print(length)
 
 
 
 
 
 
 
270
 
271
 
272
 
 
266
 
267
  # if not, create new record
268
  length = len(worksheet.col_values(1))
269
+ print(length) # number of cells that are filled
270
+ val = worksheet.cell(1, 1).value
271
+ print(val)
272
+ val = worksheet.cell(0, 0).value
273
+ print(val)
274
+ val = worksheet.cell(1, 2).value
275
+ print(val)
276
+
277
 
278
 
279