0% found this document useful (0 votes)
91 views1 page

Python Type Conversion Explained

This document discusses Python type conversion, which is the process of converting data from one type to another, such as converting an integer to a string. It notes there are two types of conversion in Python: implicit conversion, which occurs automatically, and explicit conversion, which requires manual conversion.

Uploaded by

sunnybagga
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
91 views1 page

Python Type Conversion Explained

This document discusses Python type conversion, which is the process of converting data from one type to another, such as converting an integer to a string. It notes there are two types of conversion in Python: implicit conversion, which occurs automatically, and explicit conversion, which requires manual conversion.

Uploaded by

sunnybagga
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Python Type Conversion

In this tutorial, we will learn about the Python Type conversion with the help
of examples.

In programming, type conversion is the process of converting data of one


type to another. For example: converting  int  data to  str .
There are two types of type conversion in Python.

 Implicit Conversion - automatic type conversion

 Explicit Conversion - manual type conversion

You might also like