product=['牛奶,''面包']price=[10,5]print(product)print(price)product.append('可乐')print(product)
Standard input is empty
['牛奶,面包'] [10, 5] ['牛奶,面包', '可乐']
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!