string是python的數據類型嗎?
Python的基本數據類型——StringString是一個Unicode字符序列,是Python中最重要的數據類型之一,可以使用單引號、雙引號、三引號創建創建一個字符串
a='1234'
b="hello world"
c='''hello world 1234'''
既然單引號、雙引號、三引號都可以創建字符串,那么他們的區別在哪呢?
# 單引號、雙引號沒有太大的區別
# 但是如果我們想輸出 what's up ? 這樣中間帶有單引號的字符串時就要使用雙引號
a='hello world'
# 輸出 hello world
b="what's up ?"
# 輸出 what's up ?