Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
camiller
/
camiller_python
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Charles Miller
commited on
Aug 9, 2023
Commit
e20320b
·
1 Parent(s):
88d8d97
Add application file
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
# -*- coding: utf-8 -*-
2
+
"""
3
+
Created on Wed Aug 9 12:44:03 2023
4
+
5
+
@author: u5390570
6
+
"""
7
+
import streamlit as st
8
+
9
+
x = st.slider('Select a value')
10
+
st.write(x, 'squared is', x * x)
11
+