Python學習筆記(二):字符串的運算

1.字符串的相加 "hello"+"world" = "hello world" 2.字符串的乘法 "hello"*3 = "hellohellohello"(即hello重複顯示3遍) 注:字符串不能與字符串相乘,只用於和數字相乘,如: print("hello"*"world") 運行報錯:     print("hello" * "world") TypeError: can't multi
相關文章
相關標籤/搜索