Skip to content

Instantly share code, notes, and snippets.

@ovijitM
Created October 5, 2022 19:48
Show Gist options
  • Save ovijitM/5817c30b3b96b301594dad5d196c6e34 to your computer and use it in GitHub Desktop.
Save ovijitM/5817c30b3b96b301594dad5d196c6e34 to your computer and use it in GitHub Desktop.
web
import streamlit as at
from tabulate import tabulate
at.write("hello world")
with at.container():
a,b=at.columns(2)
with a:
at.write(" i am ovijit karmakar ")
with b:
at.write(" now i am doing under gradutaion")
at.write("""
- i am ovijit karmakar"
- i am 23 years old"
- i am doing my job properly"
- now i am under graduate"
""")
at.write("----")
with at.container():
c,d,e,f,g=at.columns(5)
with c:
at.write("hfjkdfjhdfh")
with d:
at.write("kdjfkjkalj")
with e:
at.write("kjkdjfj")
with f:
at.write("jhfjkdhfhd")
with g:
at.write("kdfdnkdjdh")
table = at.table([['First Name', 'Last Name', 'Age'], ['John', 'Smith', 39], ['Mary', 'Jane', 25], ['Jennifer', 'Doe', 28]])
tabulate(table)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment