Day Day Six Lesson : Python Casting
Casting is the process of converting a value from one data type to another.
Python provides built-in functions for casting:
int() → Converts a value to an integer (whole number)
float() → Converts a value to a float (decimal number)






