Print "Hello World!"

print_hello_world

Challenge - Print “Hello World!”

Table of Contents

Skills Required

Please make sure to go through all the skills mentioned above to understand and execute the steps mentioned below

Steps

  • Create a folder in your PC
  • Open this folder in Visual Studio Code using menu File->Open Folder
  • Open File Explorer
  • Create a python file by any name, say hello.py and write the following
# filename - hello.py
print("Hello world!")
  • Run the code using menu Run -> Run Without Debugging
  • You should see Hello world! printed in the terminal

Table of Contents

Comments