Example & Tutorial understanding programming in easy ways.

What is Type conversion in Python ?

Type conversion is refers as the conversion of one data type to another.

Like:

int(str) : we can change string data type to integer.

list(set) : we can change set to list.

str(int) : we can change the number to the string.

Read More →