Python/Basic (27) ์ธ๋ค์ผํ ๋ฆฌ์คํธํ [Python] openpyxl - ์์ ์ฝ๊ธฐ/ํธ์ง ํ๊ธฐ Streamlit. The fastest way to build custom ML tools https://www.streamlit.io/ Streamlit — The fastest way to build custom ML tools Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful data apps in hours, not weeks. All in pure Python. All for free. www.streamlit.io [Python] __name__ __name__ - ํ์ด์ฌ ์์ฒด์์ ์ฌ์ฉํ๋ ๋ณ์ - ์ง์ ์คํ ๋ ๊ฒฝ์ฐ๋ __name__ = __main__ - ๋ค๋ฅธ ํ์ผ์ ์ํฌํธ ๋ ๊ฒฝ์ฐ๋ ์์ ์ ํ์ผ๋ช ์ด ๋ฐ์ธ๋ฉ๋จ # ์ง์ ์คํํ ๊ฒฝ์ฐ๋ง ์คํ if __name__ == "__main__": print(__name__) [Python] Pandas null ์ฒดํฌ # importing pandas package import pandas as pd pd.isnull(data["Gender"]) pd.notnull(data["Gender"]) pd.isnull() / pd.notnull() https://www.geeksforgeeks.org/python-pandas-isnull-and-notnull/ Python | Pandas isnull() and notnull() - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and pr.. Sqlite http://pythonstudy.xyz/python/article/204-SQLite-%EC%82%AC%EC%9A%A9 ์์ ๋ก ๋ฐฐ์ฐ๋ ํ์ด์ฌ ํ๋ก๊ทธ๋๋ฐ - SQLite ์ฌ์ฉ 1. sqlite3 ์๊ฐ SQLite๋ ๋ณ๋์ DB ์๋ฒ๊ฐ ํ์์์ด DB ํ์ผ์ ๊ธฐ์ดํ์ฌ ๋ฐ์ดํ๋ฒ ์ด์ค ์ฒ๋ฆฌ๋ฅผ ๊ตฌํํ Embedded SQL DB ์์ง์ด๋ค. SQLite๋ ๋ณ๋์ ๋ณต์กํ ์๋ฒ ์ค์น๊ฐ ํ์ ์๊ณ , ์ฝ๊ณ ํธ๋ฆฌํ๊ฒ ์ฌ์ฉํ ์ ์๋ค๋ ์ ์์ ๋๋ฆฌ ์ฌ์ฉ๋๊ณ ์๋ค. ์ค๋๋ ๋๋ถ๋ถ์ Mac OS X ๋ ๋ฆฌ๋ ์ค์์๋ SQLite์ ๊ธฐ๋ณธ์ ์ผ๋ก ๋ด์ฅํ๊ณ ์์ง๋ง, ๋ง์ฝ ์์คํ ์ ๋ด์ฅ๋์ด ์์ง ์๋ ๊ฒฝ์ฐ๋ http://www.sqlite.org ์์ ๋ค์ด๋ฐ์ ์ค pythonstudy.xyz https://docs.python.org/3/l.. [pandas] datetime ์ผ๋ก type ๋ณ๊ฒฝํ๊ธฐ x์ถ์ด datetime ํ์์ด ์๋๋ฉด date ํ์์ผ๋ก ๋ณ๊ฒฝํ๊ธฐ import pandas as pd dataset['DATE_TIME'] = pd.to_datetime(dataset['DATE_TIME']) MySQL ์ฐ๋ํ๊ธฐ(DB ํด๋์ค ์์ฑ) https://kkamikoon.tistory.com/162?category=825129 [Python Flask] ์น ํ์ด์ง ๋ง๋ค๊ธฐ 06 - MySQL ์ฐ๋ํ๊ธฐ(DB ํด๋์ค ์์ฑ) ์ด์ ํฌ์คํธ์์๋ MySQL์ ์ฐ๋ํ๋ ๋ฐฉ๋ฒ์ ์์๋ณด์์ต๋๋ค. ํ์ง๋ง ์ด ๋ฐฉ๋ฒ์ผ๋ก๋ ๋์ค์ ์ถ๊ฐ์ ์ธ ๊ธฐ๋ฅ์ ๊ฐ๋ฐํ๊ณ , ๋ ๋ค์ ์ฐ๋ํ๋ ๋ฐ ์์ด์ ๋งค์ฐ ์ด๋ ค์์ด ์์ต๋๋ค.. ์ฆ, ๊ณ์ํด์ ๋ฐ์ดํฐ๋ฒ ์ด์ค๋ฅผ ๋ค์.. kkamikoon.tistory.com [Python] flask(์น ํ๋ ์์ํฌ)๋ก ์ด๊ฐ๋จ ์น ํ์ด์ง ๋ง๋ค๊ธฐ ์ค์น pip install flask hello_world.py from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!" if __name__ == "__main__": app.run() ์์ ๊ฐ์ด ์์ฑํ hello_world.py ์คํ ํ 127.0.0.1:5000๋ก ๋ค์ด๋ฉด Hello World! ๋ผ๊ณ ๋ฌ๋ค :) ์ด์ 1 2 3 4 ๋ค์ ํฐ์คํ ๋ฆฌํด๋ฐ Developer๐ค๊ตฌ๋ ํ๊ธฐ