diff --git a/unit3_ex3.1.1.py b/unit3_ex3.1.1.py new file mode 100644 index 0000000..ae78bd6 --- /dev/null +++ b/unit3_ex3.1.1.py @@ -0,0 +1,5 @@ +# exercise 3.1.1 from unit 3 +# What will be the result of the following expression? +output = "He" + "l" * 2 + "o" + " Python " + str(7.2 / 2) + "." + str(3) +print(output) +# Enswer: 'Hello Python 3.6.3'