Python字符串

字符串 1、認識字符串 字符串是Python中經常使用的數據類型,通常使用引號來建立字符串python 1. 字符串定義 # 單引號定義字符串 In [1]: s='Hello world!' In [2]: print(type(s)) <class 'str'> # 雙引號定義字符串 In [3]: s="Hello world!" In [4]: print(type(s)) <cla
相關文章
相關標籤/搜索