摘要: 1、字符串方法 say = “there are %d monkeys in the %s!”,%d表示整数,%s表示字符串 say %(3,'tree') print(say %(3,'tree')) 2、索引 hw = "hello world" hw[0] hw.find('world')结果 阅读全文