0
double qoutes in python3
how to print string having double qoutes
1 Answer
+ 6
You can use the backslash escape character inside a double quotes string:
print("An \"apple\" is a type of fruit");
Or use double quotes inside a string quoted string:
print('An "apple" is a type of fruit');