1. 程式人生 > >python之路 -- 單引號、雙引號&三引號

python之路 -- 單引號、雙引號&三引號

span 區別 執行 跨行 註銷 bold 雙引號 int col

單引號與雙引號完全一模一樣;沒有區別。例如:

print(‘hello, world!‘)
print("hello, world!")

執行結果都是輸出:hello,world!

三引號可以表示註銷和文字可以跨行,例如:

1. 註銷:

  ‘‘‘print(‘hello, world!‘)
print("hello, world!")‘‘‘

2.跨行輸入:
  data=‘‘‘
    Hello,world!
    Hello,world!
    Hello,world!
    ‘‘‘

 單引號中可以引用雙引號,中間的當字符串輸出

雙引號裏面可以引用單引號,中間的當字符串輸出

print(‘"hello world"‘) ---輸出為:"hello world"

print("‘hello world‘") ---輸出為:‘hello world’

python之路 -- 單引號、雙引號&三引號