1. 程式人生 > >1、Python字符串練習

1、Python字符串練習

clas 字符 pre pytho 拼接 body word span 輸出


#Python字符串的拼接,以及單雙引號的運用
print(abc,efg)
print("abc","efg")

print(abc+efg)

print("abc")
print("‘abc‘")


#字符串的多行輸出
print(‘‘‘abc‘‘‘) print(‘‘‘a b c d‘‘‘) print(‘‘‘"wode"+‘word‘ feide paode‘‘‘)

1、Python字符串練習