0% found this document useful (0 votes)
18 views

05 Type Conversion

The document discusses Python programming and type conversion between different data types like integer and float. It provides examples of type conversion and discusses how input in Python works with type conversion.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

05 Type Conversion

The document discusses Python programming and type conversion between different data types like integer and float. It provides examples of type conversion and discusses how input in Python works with type conversion.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Programming using Python

prutor.ai Amey Karkare


Dept. of CSE
IIT Kanpur

For any queries reach out to [email protected] or [email protected]


or whatsapp 9910043510
1
Python Programming
Type Conversion (Type Cast)
• Conversion of value of one type to other
• We are used to int ←→float conversion in Math

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

You might also like