Python is high level object oriented language and is getting acclaimed beacuase of its simple yet robust features to develop, automate and visualise the applications. Its data analystics capabilities are amazing.
I am going to share the example programs that I am using while learining it ….
Call a Function-:
import os, time, sys
print("hello")
def test():
print('fuction testing')
test()
time.sleep(2)
print("now will show the function with function declared inside...")
time.sleep(2)
def namecall(name):
print("Hello " + name)
namecall('Pankaj')
namecall('Aditya')
namecall('Adrash')
namecall('Poonam')