objektify2 / storage.py
chohj06ms's picture
Create storage.py
d47aa2a verified
raw
history blame
248 Bytes
# 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()