0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

streamlitでタイトルと文章を表示する

Posted at

プログラムを作成

main.py
import streamlit as st

st.title("Streamlit 超入門")

st.write("sample test")

実行結果

streamlit run <実行したいファイル名>を実行すれば画面が起動される

PS E:\作品\streamlit_practice> streamlit run main.py  

  You can now view your Streamlit app in your browser.

  Local URL: http://localhost:8501
  Network URL: http://<IPアドレス>:8501

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?