Python 3 Tutorials

How to add Python shell to the Atom Text Editor

If you are using the Atom text editor as you python IDE, then you should add the script and Terminal-plus packages to the atom editor. With the script package you can run python programs from the atom text editor and Terminal-plus open the Linux/Unix shell in the atom editor.

To run python scripts in the Atom text editor, we need to Install the script package.

How to Convert integers to strings in Python 3

Often you will need to convert integers to strings in python programming, especially if you want to concatenate integers with strings. In this python 3 tutorial we are going to learn how to convert int to string in python 3.

In python 3 str() function used to convert integers to strings.

left