Basic Syntax(2)

SCRIPT MODE PROGRAMMING:
First open IDLE(Python GUI) write a simple Python program in a script. All python files will have extension .py . Save file and press F5 to run the program :-
Let us write simple Python Program:-

print("Welcome to the  Python world !!");

This will produce the following result:-welcome

Leave a comment