Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
chohj06ms
/
objektify2
like
1
Running
App
Files
Files
Community
9c299e3
objektify2
/
storage.py
chohj06ms
Create storage.py
d47aa2a
verified
6 months ago
raw
Copy download link
history
blame
Safe
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()