- 1
Pls help
Fill in the blanks to output "ABC": print("A" "B" "C") i need put something in between A and B and B and C
6 Respostas
+ 4
print("A" + "B" + "C")
+ 3
Trocadero Pepsi
Learn about string addition or concatenation.
https://www.educative.io/edpresso/how-to-concatenate-strings-in-JUMP_LINK__&&__python__&&__JUMP_LINK
edit:
https://www.geeksforgeeks.org/python-string-concatenation/amp/
+ 2
Hi! what are your thoughts on this?
+ 1
See string concatenation
https://www.sololearn.com/learning/2427/
+ 1
print("A" + "B" + "C")
- 2
print("A" + something + "B" + something + "C")