...

/

String Quotes

String Quotes

This lessons guides you how to deal with string quotes in Python.

In Python, single-quoted strings and double-quoted strings are the same.

Pick a rule and stick to it.

Single Quotes

Press + to interact
string = 'Educative'

Double Quotes

Press + to interact
string = "Educative"

String within a String

You need to concatenate the strings if there is more than one:

Press + to interact
Incorrect: string = "Educative "Inc""
Correct: string = "Educative" + "Inc"