0
How do you create a string
strings
2 Answers
+ 13
A string is created by entering text between two single or double quotation marks.
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2274/
0
It is often used with quotation marks (""), and inside the quotation marks you usually place text. Actually assigning it requires an equal sign, and a variable name. For example:
x = "This is a string."