Python Programming Basics Notes
Simple python Code Sample
#!/usr/bin/python3
print("Hello world This is fucking Test.")
Taking input from User
#!/usr/bin/python3
name = input("Name : ")
print("Your name is : %s" % name)
Functions
def function_name(arguments....):
// functio...
ajaytekam.hashnode.dev79 min read