-Python has str type as the data type that handles character strings.
a="note" b="book" a+b
Execution result
"notebook"
for a in "book": print(i)
b o o k
Recommended Posts