import streamlit as st from PIL import Image """ # AI_ML """ uploaded_file = st.file_uploader("Choose a picture", type=["png","jpg","jpeg"]) if uploaded_file is not None: st.image(Image.open(uploaded_file),width=250)