Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def pri(df):
|
| 4 |
-
print(df)
|
| 5 |
-
print(
|
| 6 |
for item in df:
|
| 7 |
-
print(item)
|
| 8 |
|
| 9 |
|
| 10 |
with gr.Blocks() as demo:
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def pri(df):
|
| 4 |
+
print(len(df))
|
| 5 |
+
print(len(df[0]))
|
| 6 |
for item in df:
|
| 7 |
+
print(type(item))
|
| 8 |
|
| 9 |
|
| 10 |
with gr.Blocks() as demo:
|