Python - Integer Write the function definition for the function ' Integer_fun ' which takes two parameters ' a' & ' b' where - a is a FLOAT variable & - b is a STRING variable which takes Integer input but as a String, Say b = "100". Using type conversion, - Covert ' a ' into an INTEGER and store it in ' c ' - Covert ' b ' into an INTEGER and store it in ' d ' The Expected output is as below : Print the Type of a Print the Type of b Print c Print d Print the Type of c Print the Type of d Input Format for Custom Testing: # In the first line, value for 'a' # In the second line, value for 'b' Sample Test Case 1: Sample Input STDIN Function parameter ----- ------------------ 1.23 → a 562 → b Sample Output <class 'float'> <class 'str'> 1 562 <class 'int...
Python programming related things