Activity 2
Workshop Resources
Start your code with the line print(
"Nuevo"
+" "
+"Foundation"
). If you run it, you should get the following output:Nuevo Foundation
Let’s try and find two more ways to print the string
"Nuevo Foundation"
using two plus (+) symbols in each print statement.Once you make this work, you should have
"Nuevo Foundation"
printed out 3 times. In other words, your console should look like this after you press run:Nuevo Foundation
Nuevo Foundation
Nuevo Foundation
The strings that you combine do not have to be real words! For example, "Ap" + "ple"
will produce the string "Apple"
.
Ask for help if you are confused!