HOME C C++ PYTHON JAVA HTML CSS JAVASCRIPT BOOTSTRAP JQUERY REACT PHP SQL AJAX JSON DATA SCIENCE AI

Python Syntax


The Python syntax defines a set of rules that are used to create a Python Program.

Syntax
 a=7
    b=90
    if (a>b):
        print("Hello World")
    else:
        print("Good Bye") 
        
        
       Output 
       Good Bye