We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730c3de commit 5ccdff7Copy full SHA for 5ccdff7
ch04-strings-and-string-methods/7-streamline-your-print-statements.py ch04-strings-and-string-methods/7-streamline-your-prints.py
@@ -1,12 +1,12 @@
1
-# 4.7 - Streamline Your Print Statements
+# 4.7 - Streamline Your Prints
2
# Solutions to review exercies
3
4
5
# Exercise 1
6
weight = 0.2
7
animal = "newt"
8
9
-# Concatenate a number and a string in one print statement
+# Concatenate a number and a string in one print call
10
print(str(weight) + " kg is the weight of the " + animal + ".")
11
12
0 commit comments