Skip to content

Commit a32bbee

Browse files
authored
Update unit4_ex4.4.1.py
1 parent 858033a commit a32bbee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unit4_ex4.4.1.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@
77
print("Brr... I need to find some penquins. to keep me company")
88
else:
99
print("Goodbye penquins!")
10-
# Enswer: error of kind IndentationError
10+
# Answer: error of kind IndentationError
1111

1212
# 2:
1313
temperature = float(input("What is the temperature? "))
1414
if temperature < 0
1515
print("Brr... I need to find some penquins. to keep me company")
1616
else:
1717
print("Goodbye penquins!")
18-
# Enswer: error of kind SyntaxError
18+
# Answer: error of kind SyntaxError
1919

2020
# 3:
2121
temperature = float(input("What is the temperature? "))
2222
if temperature < 0:
2323
print("Brr... I need to find some penquins. to keep me company")
2424
else:
2525
print("Goodbye penquins!")
26-
# Enswer: what is the temperature?
26+
# Answer: what is the temperature?

0 commit comments

Comments
 (0)