9 lines
158 B
Python
9 lines
158 B
Python
#!/usr/bin/env python3
|
|
# -*- coding:utf-8 -*-
|
|
import streamlit as st
|
|
|
|
st.write('Hello World!')
|
|
|
|
for i in range(1, 13):
|
|
st.write(f"{i}. this is line {i}")
|