learnpython24.-(first python program)
FIRST PYTHON PROGRAM
Writing Our First Python Program
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:
- Open Pycharm and create a new file in it.
- Keep in mind the file name should not match any module name.
- After creating a new file, type print("Hello World")
- And then run your program.
- 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!")
Comments
Post a Comment