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
Input
(none)
Output
Hello, Python
Hint
- print() adds the newline at the end for you.
- 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.