Skip to main content

Hello Python

Write a sample program to print message

Note: In python print() function is used to write the statements on the output.

Program:

print("Welcome gpr computers")

print('Hai')

print("Hello Python")

output:

Welcome gpr computers

Hai

Hello Python


Comments