Better Programming

Advice for programmers.

Follow publication

Member-only story

What Is Up With The Numbers In Python?

Jacob Toftgaard Rasmussen
Better Programming
Published in
7 min readFeb 28, 2022
Photo by Jan Kopřiva on Unsplash

Explicit and implicit types

A consequence of implicit types in Python

#Python
x = 42
y = 1.5
//C
int x = 42;
float y = 1.5;

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Jacob Toftgaard Rasmussen
Jacob Toftgaard Rasmussen

Written by Jacob Toftgaard Rasmussen

I explore the wonderful world of software engineering. I write guides, informative articles and silly projects ;) — Keep learning!

Responses (1)

Write a response