Computer Science, asked by utkarshdwivedi1999, 1 year ago

ello there!!♥

What do you mean quotes in python??​

Answers

Answered by InstaPrince
35

Python does have two simple ways to put quote symbols in strings.

You are allowed to start and end a string literal with single quotes (also known as apostrophes), like 'blah blah' . Then, double quotes can go in between, such as 'I said "Wow!" to him.'

You can put a backslash character followed by a quote ( \" or \' ).


InstaPrince: Tq utkarsh
Answered by nainika26
1

Answer:

Python does have two simple ways to put quote symbols in strings.

You are allowed to start and end a string literal with single quotes (also known as apostrophes), like 'blah blah' . Then, double quotes can go in between, such as 'I said "Wow!" to him. ...

You can put a backslash character followed by a quote ( \" or \' ).

Similar questions