11 lines
229 B
Python
11 lines
229 B
Python
#!/usr/bin/env python3
|
|
# -*- coding:utf-8 -*-
|
|
import streamlit as st
|
|
|
|
st.write('# Hello World!')
|
|
|
|
st.link_button("Go to gallery", "https://streamlit.io/gallery")
|
|
|
|
for i in range(5):
|
|
st.write(f"{i + 1}. this is line {i + 1}")
|