1.

Give the general form of if statement with an example

Answer» Syntax:if condition : statement(s)Example:Code:(script)a=10b=20if a>b: print("a:", a)Output:a: 10


Discussion

No Comment Found