05 Type Conversion
05 Type Conversion
prutor.ai
• Integer 3 is treated as float 3.0 when a real
number is expected
• Float 3.6 is truncated as 3, or rounded up
as 4 for integer contexts
• Type names also work as Type converter
functions in Python
2
Type Conversion Examples
Note that float to int
conversion is truncation, not
rounding off
prutor.ai
3
Programming
Type Conversion and Input
prutor.ai
4
Programming