Write Your First Python Program
Write your first python program
print("Hello World!")
name = input("What is your name? ")
print("Nice to meet you,", name)
Write your first function in python
def main():
print("Hello World!")
name = input("What is your name? ")
print("N...
ahmedgouda.hashnode.dev1 min read