fork download
  1. product=['手机','电脑','鲜花','牛肉']
  2. price=[6666,6766,20,50]
  3. print(product)
  4. print(price)
  5. product.append('可乐')
  6. print(product)
Success #stdin #stdout 0.07s 14088KB
stdin
Standard input is empty
stdout
['手机', '电脑', '鲜花', '牛肉']
[6666, 6766, 20, 50]
['手机', '电脑', '鲜花', '牛肉', '可乐']