How to open a Jupyter notebook by double-clicking

Top 5 Python Tools
In this post, we will run through how you can double-click a Jupyter notebook to open it. Jupyter notebooks are one way engineers can write and execute Python code. But when you double-click a Jupyter notebook on your computer, it probably doesn't open or it opens in notepad at looks like nonsense. Learn how to open Jupyter notebooks by double-clicking using the steps in this post.

more ...

Exponents and Logs with Python

math-image

Python can be used just like a pocket calculator. In addition to addition, subtraction, multiplication and division, you can calculate exponents and logarithms with Python. Exponent and logarithm functions are imported from the math module which is part of the Python Standard Library. This means all the functions in the …

more ...

How to do Trig with Python

math-image

Python can be used to complete trigonometric calculations. You can calculate sine, cosine, and tangent as well as use other trig functions using Python's math module, which is part of the Python Standard Library and comes included with all Python installations. (This post is adapted from my book Problem Solving …

more ...

How to do Math with Python

math-image

Python can be used like a calculator to do math. Operations like addition, subtraction, multiplication, and division can be done with Python. In this post, you'll learn how to do math with Python.

Arithmetic

Python can be used as a calculator to make arithmetic calculations.

Try the following commands in …

more ...

Top 5 Python Tools

Top 5 Python Tools This post contains my top 5 Python tools. These 5 tools are the ones I use the most and recommend for Python programmers. These tools help me write, run and revise code and they make me a more productive programmer.

more ...