Python3 字符串(String)
Python3 字符串(String)
字符串是 Python 中最常用的數據類型,也是所有編程語言中最常用的數據類型。我們可以使用引號( ' 或 " )來創建字符串。
創建字符串很簡單,只要為變量分配一個值即可。例如:
Python3 范例
var1 = 'Hello World!' var2 = "yapf"
相關文章
- Python Number 數字
- Python 列表 List
- Python 模塊
- Python 數組
- Python 搜索樹
- Python 算法類
- Python3 字典(Dictionary)
- Python3 if else 語句
- Python3 命名空間
- Python3 作用域
- Python3 內置函數
- Python pow() 函數
- Python uniform() 函數
- Python File seek() 方法
- Python os.close() 方法
- Python lower()方法
- Python List append()方法
- Python List pop()方法
- Python Tuple 元組 tuple()方法
- Python time tzset()方法