5.3. Type conversion functions

Python also provides built-in functions that convert values from one type to another. The int function takes any value and converts it to an integer, if it can, or complains otherwise:

int can convert floating-point values to integers, but it doesn’t round them — it chops off the fraction part (this is called “truncating”):

float converts integers and strings to floating-point numbers:

Finally, str converts its argument to a string:

Before you keep reading...

Making great stuff takes time and $$. If you appreciate the book you are reading now and want to keep quality materials free for other students please consider a donation to Runestone Academy. We ask that you consider a $10 donation, but if you can give more thats great, if $10 is too much for your budget we would be happy with whatever you can afford as a show of support.

You have attempted 1 of 9 activities on this page