Variables & Datatypes posted on April 23, 2023 product_name = 'mobile' price = 99.9 stock = 99 is_in_inventory = True print("product_name:", product_name, "price:",price, "stock:",stock) output: product_name: mobile price: 99.9 stock: 99 Now create similar exercise and try by yourself
Leave a Reply