Deep_Learning / pages /Intro to Data Analysis.py
corvo7's picture
Update pages/Intro to Data Analysis.py
9cf2737 verified
raw
history blame contribute delete
140 Bytes
import streamlit as st
def fun():
for z in range(1,10):
yield z
if st.button("Stream data"):
st.write_stream(fun)