a = [1, 2, 3]b = ab.append(4)print(a)
s = "Python is great"print(s[7:])

码途钥匙a = [1, 2, 3]b = ab.append(4)print(a)
s = "Python is great"print(s[7:])
