+ 2
What does ' ' mean?
('Z')
9 Respostas
+ 4
It is used to denote a single character.and double quotes is used to denote word
+ 3
In C and C++ ,single quotes is used to define a char while double quotes is used to define a string. In Python,there is no difference
+ 2
Blank space / literals 🤨
+ 1
It is used to define a string
+ 1
It means chapter
0
So is it the same as " "?
0
Strings are created by wrapping characters with either single or double quotes (under most circumstances).
0
In Python you can create strings (text objects) using a pair of single quotes ' '. Any character between the quotes would belong to the string.