CONCATENATING STRINGS Flashcards

1
Q

The + concatenate operator is used to join together strings

A

The + concatenate operator is used to join together strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

x = “6” + “3”

print(x)

A

“63”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

len(str)

word = “Algorithm”

print(len(word))

A

9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly