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