In Python None keyword is used to represent a null value:
x = None print(x) print(type(x))
None<class 'NoneType'>
A function which returns nothing can be assigned to a variable. That variable will have None value:
def run(): print('running') x = run(); print(x);
runningNone
Dependencies and Technologies Used: