Lab 1

This is lab #1 test

In this lab we display some text.

Screenshot:

Here is my source code:

str1 = ‘I love’
str2 = ‘ this class’
str3 = ‘very much’
message = str1 + str3 + str2
print (message)