0
What is a char and a string?
3 Answers
+ 4
Muhammad Zubair Mashwani, you are studying Python.
In Python there is not such a difference, there is only type str, and you can use ' or " as you please.
0
A char is a type of variable which represents a character and a String is a sequence of chars meaning it is a word/phrase.
E.g.: 'A' is a char and "Hello" is a String because is a sequence of 5 chars.
0
Chriptus could you please give me some meaningful information about single qutation and double qutation strings?