CONCATENATING STRINGS Flashcards
1
Q
The + concatenate operator is used to join together strings
A
The + concatenate operator is used to join together strings
2
Q
x = “6” + “3”
print(x)
A
“63”
3
Q
len(str)
word = “Algorithm”
print(len(word))
A
9
4
Q
A