for 迴圈(復習)
way 1: for i in range( ): print( )
for i in range(5):
print(i)...
安裝SQLAlchemy
pip install sqlalchemy
from sqlalchemy import create_engine, Colum...
安裝 Flask
pip install Flask
app.py
from flask import Flask, jsonify, render_temp...
買超和賣超是股市技術分析中常用的術語,用來描述股票或其他資產在特定時期內的買賣壓力情況。這兩個概念有助於投資者判斷市場情緒,並預測未來的價格走向。以下是對這兩個...
正則表達式
正則表達式(Regular Expressions, 簡稱 regex)是一種用來處理文字的強大工具。它可以幫我們輕鬆找出符合特定模式的字串,這在...
LeetCode 75 介紹
哈囉大家好,我是Justin Chang,這次要來挑戰用Python寫LeetCode 75的題目。使用Python的原因是我對於...