Skip to content

Home


Welcome to this guide, we will be going through the introduction and necessity of a programming language and then through basic and intermediate python.


A simple program to input your name and say Hello to you:

name = input("What is your name ?") #This line takes the input
print(f"Hello {name}") #This line prints Hello along with name