Created
October 5, 2022 19:48
-
-
Save ovijitM/5817c30b3b96b301594dad5d196c6e34 to your computer and use it in GitHub Desktop.
web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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