Hello friends! This is a simple program to print on Screen
To print the content we simply use the print() function.
Whatever is written inside the double or single quotes gets printed.
Check out the following example:
print ("Welcome to TechandCoders site")
# we can also use single quotes
print ('Let us learn python programming')
# '\' escape character
print ("She's here!")
print('She\'s here!!!')