Lab: Exercising Some Basic Python Syntax

Procedures:

Write a Python program that

1.   Assigns the constant string �Siberia � to a variable

2.   Assigns the constant string �is nice this time of year� to another variable

3.   Concatenates the 2 strings and assigns the result to a 3rd variable

4.   Prints the variable representing the concatenated string

5.   Performs division of 2 integer variables (I don�t care what their values are) and saves the result to a variable

6.   Performs the modulus of the same values used above

7.   Print the results, using these formats:

The integer division of x by y yields z

x modulo y yields w

Where x, y, z, and w represent the values of your input variables and results