python中的索引和切片,字符串方法

一、字符串方法索引

say = 「there are %d monkeys in the %s!」,%d表示整數,%s表示字符串字符串

say %(3,'tree')方法

print(say %(3,'tree'))字符

二、索引

hw = "hello world"

hw[0]

hw.find('world')結果爲6,此時反查hw[6:]結果爲world

相關文章
相關標籤/搜索