Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 517 Bytes

File metadata and controls

35 lines (20 loc) · 517 Bytes

Unit 1 Practice Solutions

Exercise 1

Problem:

print("Hello World!

Solution:

  1. SyntaxError: EOL while scanning string literal

    A closing quotation mark is missing in "Hello World!"

  2. SyntaxError: unexpected EOF while parsing

    A closing parenthesis is missing on print()

Final code:

print("Hello World!")

Final output:

Hello World!