#method2: #List comprehension: order_amount = [100,200,50,500,400,900,1200,70] order_amount_with_gst = [i+(i*0.18) for i in order_amount] print(order_amount_with_gst ...
##Q 01 Write a Python program to create a list of integers of size N and store random values in it. Find and display the sum and average. Create two more lists that contain the even and odd values ...