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!