Python contains one special literal i.e.
None. We use it to specify that the field has not been created.Example 9: How to use special literals in Python?
drink = "Available"
food = None
def menu(x):
if x == drink:
print(drink)
else:
print(food)
menu(drink)
menu(food)
Output
Available None
In the above program, we define a
menu function. Inside menu, when we set the argument as drink then, it displays Available. And, when the argument is food, it displays None.
No comments:
Post a Comment