Write a program that prints Hello, Python! on a single line.
This is your first Python program. Use the print() function with the exact text inside quotes.
Expected output:
Hello, Python!
The print() function displays whatever you put inside its parentheses. Text must be wrapped in quotes (single or double).