# There are two ways -
print('"By using single quotes"')
print(""Or By using escape character double quotes"")
## calling the function using f-string
name = "Datacamp"
print(f"{greet(name)}")
>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]