Popular Posts

Thursday, August 13, 2020

Python Beginner: My first Python program is...Hello, Developer! (Not Hello, World!)

 Hello, developer!


Today, I will input my first codes at the PyCharm IDE and run it.

Are you ready? Let's code it now!

First of all, create a "New project" as the following screenshot. Simply click the "Create" button on the Create project window.


Then, you will see the system provided a sample Python code as below. You can run it by clicking the upper right side green arrow button. If you click it, you will see the code execution result at the bottom side terminal window as below screenshot.

Now, remove all text on the right side with the "main.py" tab.

I input the below code as my first Python program.

Python code:

print("Hello Developer!")

If you successfully input the code and click the "Run" button at the right upper side, then you will see the "Hello Developer!" text in the bottom side terminal window as below screenshot.


Can you see the "Hello developer" text? Congratulations! You just stepped in developer career! 

See you next coding! :)




 






No comments:

Post a Comment

Python - Web crawling exercises

Hello Python developer! How are you? Hope you've been good and had wonderful time with Python. There are 10 Python requests module exerc...