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