Tuesday, 25 June 2019

Example program on None data type

Example program on None

def ex():

   a=10

print(ex())

""" out put """
 None



No comments:

Post a Comment

Files with Exception handling

#Ask the user to take two input integer values var a,b try:     a=int(input("enter any integer value:"))     b=int(input(&qu...