in 判断字符串是否包含给定的字符,有则返回True,没有则返回False not in 判断字符串是否不包含给定的字符,没有则返回True,有则返回False r/R 输出原始字符串 % 格式字符串 ''' str1 = 'Hello' str2 = 'python' print(str1 + str2) #输出 Hellopython print(str1 * 3) #输出 HelloHelloHello print(...