# 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()