Print string with double quotes in Python
print() - Question 4
In this question, we will see how to print a string with double quotes in python programming using the print() function. To know more about print() function click on the print() function lesson.
Q4) Write a program in python to print the name Dremendo with double quotes on the screen.
Example : "Dremendo"
Program
print('\"Dremendo\"')
Output
"Dremendo"