What is the correct syntax for creating a variable that is bound to a dictionary?
fruit_info = to_dict('fruit': 'apple', 'count': 2, 'price': 3.5)
fruit_info = {'fruit': 'apple', 'count': 2, 'price': 3.5}
fruit_info =('fruit': 'apple', 'count': 2,'price': 3.5 ).dict()
fruit_info = ['fruit': 'apple', 'count': 2,'price': 3.5 ].dict()