Writing Our First Python Program

So, today we will be writing our first program in Python Language. I know you were waiting to do this for long.

Let's get to business and start writing our first python program. Follow the below steps:

  1. Simply Open Pycharm and create a new file in it.
  2. Keep in mind the file name should not match any module name.
  3. After creating a new file, simply type print(“Hello World”)
  4. And then run your program.
  5. You will get the output as “Hello World”.

So, this is our first python program and in this program, we just used a print function. In this function whatever we pass in parenthesis () in a double quote or single quote, gets printed as it is on the screen.

Make sure you have written and executed the below code to get a feel of what it looks like!


print("Hello world! I am learning Python from CodeWithHarry YouTube channel")

Comments

Popular posts from this blog

What is Python?

String Slicing And Other Functions

Lists And Tuples