Popular Posts

Showing posts with label Prepare Development. Show all posts
Showing posts with label Prepare Development. Show all posts

Wednesday, August 12, 2020

Python Beginner: Let's setup the PyCharm IDE on your PC

 Hello, Developer!


Have you succeeded to install Python on your PC? Great! Let's install editor and development tools to help your coding easier and debugging effectively. Thankfully, there are highly effective tools the name as "Integrated Development Environment(IDE)". It supports you in building up to code frame, checking language syntax, providing help, and useful debugging features. 


You can search and select one of several IDE(PyCharm, Jupyter, Atom, Visual Studio Code, Spyder, etc.) for Python.

I installed the PyCharm Community version for code development. Because PyCharm was steadily developed for Python language development for a long time so it gives you rich features and extended functions. You can download it from the following link.


 PyCharm(https://www.jetbrains.com/pycharm/download/#section=windows)

If you install it successfully, please run it!

 

 


Congratulations! Now you are ready to start Python coding with PyCharm IDE.

See you next post!  


Tuesday, August 11, 2020

Python Beginner: Let's install the Python on your PC!

 Hello!


Today, I would like to guide your installation of Python.


There is two versions of Python now. Simply, I recommend you to install Python 3. Because there are a lot of Python 2 compatible codes but more features and upgrades on Python 3 and getting more codes are developing in Python 3. There is some differences between two versions and providing codes translators from version 2 to version 3 or reverse case but still, you change codes manually.


Let's get Python 3 version from https://www.python.org/downloads/ page. You can download the Python installation package by clicking "Download Python 3.x.x" button as below screenshot. 

When it was downloaded, let's run it for Python installation on your PC.


If you succeeded in the installation of Python, you will see the below Setup completion message.

Congratulations! You stepped in the developer career by the installation of Python on your PC just before! :)





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...