Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

tutorial https://www.youtube.com/watch?v=kS4qpQmHwCs

06 String Concatenation

One common task you’ll need to accomplish with any language involves merging or combining strings. This process is referred to as concatenation. The best way to describe it is when you take two separate strings – stored by the interpreter – and merge them so that they become one.

one = 'a'
two = 'b'
print(one+two); #this will print 'ab' on the console.

📝 Instructions:

  1. Set the values for my_var1 and my_var2 so the code prints 'Hello World' in the console.