David Steckler

Hello World Project

Step 1: Introduction

This is project 1 of 6 in the Introduction to Python path.

This project provides step-by-step instructions to help you learn new skills.

You will make

Find out what the Python 🐍 programming language can do by writing an interactive project that uses emojis πŸ™Œ πŸ™ŒπŸΌ πŸ™ŒπŸ½ πŸ™ŒπŸΎ πŸ™ŒπŸΏ.

Emojis are small colorful images πŸ₯° used to add extra meaning to messages. Emoji means β€˜picture word’ in Japanese.

You will:

  • print() text, including emojis πŸš€, and get input() ⌨️ from the user
  • Store text and numbers in variables
  • Use functions to organize your code

What do you think the code will do?


                        

Step 2: Write Your First Program

print("Hello, World!")

This line of code prints "Hello, World!" to the screen. It's a simple way to start learning how to use Python.