Open Pin-Jiun opened 2 years ago
str.strip()從兩邊,lstrip()從左邊,rstrip()從右邊
python程式碼過長, 就是每行後面加個 \
time = "2017"
print "one" + "," \
+ "two" \
+ ",three" + \
"," + time
在Python中,使用 + 运算符和 f-string 都可以用来连接字符串。这两种方法有一些不同的语法和用法:
使用 + 运算符: python Copy code string1 = "Hello" string2 = "World" result = string1 + " " + string2 print(result) 这将输出:
Copy code Hello World 使用 f-string: python Copy code string1 = "Hello" string2 = "World" result = f"{string1} {string2}" print(result) 这将输出相同的结果:
Copy code Hello World f-string 是从 Python 3.6 版本开始引入的,它提供了一种更简洁和直观的方式来在字符串中插入变量值。你可以在 f-string 中使用大括号 {} 包含变量或表达式,它们将在运行时被替换为相应的值。
Install
1.到 pip document 官方網站 建議的載點下載 pip 安裝檔
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
2.啟動剛剛下載好的 get-pip.py 檔案,就安裝完成囉!py get-pip.py
如何查看 pip 目前版本?
py -m pip --version
如何更新 pip 到最新版本?
py -m pip install -U pip
常用library安裝
pip install numpy; pip install opencv-python; pip install matplotlib; pip install pandas; pip install python-pptx
數字,字串的基本處理