Python bootcamp · Lab 01

Hello, Python

easyOutput5 minLesson: Syntax

Read the question, write Python on the right, then Run or Check.

QuestionHint and solution stay closed until you open them

Every language starts here. Print exactly this line — nothing more, nothing less:

Hello, Python

The checker compares your output character for character, so watch the capital H, the comma, and the single space.

Output. One line: Hello, Python

Constraints

  • Use a single print() call.
  • No trailing spaces or extra blank lines.

Examples

Example 1 — No input is read. Just print the line.
Input
(none)
Output
Hello, Python
Hint
  1. print() adds the newline at the end for you.
  2. Put the text in quotes: print("Hello, Python").
Show correct code

Peek only after you have tried. You can still Check your own version.

print("Hello, Python")
main.pyPython · Ctrl + Enter runs
ResultIdle
Run to see output. Check grades the tests.