Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PlaceReporter99
/
test
like
0
Runtime error
App
Files
Files
Community
522bf4e
test
/
app.py
PlaceReporter99
Update app.py
522bf4e
over 1 year ago
raw
Copy download link
history
blame
Safe
133 Bytes
import
gradio
as
gr
import
random
gr.Interface(fn=
lambda
x:
''
.join(random.sample(x,
len
(x))), inputs=
"text"
, outputs=
"text"
).launch()