Exercise: Different ways to create Python strings

Here, we use double quotes to assign the string "Hello World" to the variable text. Assign a new string to the variable using single quotes.
text = "Hello World"
text =
print(text)
Python
Setting up Python environment...
Output