Report Bug
Qus : Changing one data type to another is known as
Qus एक डेटा प्रकार को दूसरे में बदलना कहलाता है

A. Type Casting
B. Data Transformation
C. Type modification
D. Variable Shifting


Solution
A. Type Casting



Explanation
Changing a float value to an integer in Python is known as "type casting" or "type conversion." Specifically, converting a float to an integer involves truncating the decimal part of the float and keeping only the whole number part.



Report Bug