Python is a friendly programming language that reads almost like English!
Hello in Python
print("Hello, I am learning Python!")
name = input("What is your name? ")
print("Nice to meet you, " + name + "!")
Python is used by companies like Google, YouTube, and Instagram. Pretty cool, right? 🐍
Fun Project Idea
Try making a simple calculator:
a = int(input("First number: "))
b = int(input("Second number: "))
print("Sum =", a + b)
pythonbeginnertutorial