File size: 248 Bytes
d47aa2a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# test.txt 파일을 쓰기 모드로 열기
with open('data/test.txt', 'w') as file:
    # 파일에 문자열 "hello world" 쓰기
    file.write("hello world")

import gradio as gr

with gr.Blocks() as demo:
    inp = gr.Textbox()

demo.launch()