Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 1.19 KB

README.md

File metadata and controls

29 lines (17 loc) · 1.19 KB

Hello, World! 🌏

This is a simple Python project that prints "hello, world🌏" to the console.

Getting Started

To run this project, you need Python installed on your computer. You can download it from python.org.

Setting Up with Visual Studio Code (VS Code)

If you prefer using Visual Studio Code, follow these steps:

  1. Install VS Code: Download and install Visual Studio Code from code.visualstudio.com.

  2. Install Python Extension: Open VS Code and go to the Extensions view by clicking on the square icon in the sidebar or pressing Ctrl+Shift+X. Search for the Python extension by Microsoft and install it.

  3. Open a New File: Click on File > New File to create a new file.

  4. Save the File: Save the new file with the name hello.py by clicking on File > Save As... and typing hello.py.

  5. Copy the Code: Paste the following code into hello.py: or you can type it

    print("hello, world🌏")
    
    # This is a Python print command.
    # It's pretty simple.
    # The words inside the parentheses and double quotes 
    # will be displayed on the console when you run the code.