Python: Division - Hacker Rank Solution
Question:
The provided code stub reads two integers, and , from STDIN.
Add logic to print two lines. The first line should contain the result of integer division, // . The second line should contain the result of float division, / .
No rounding or formatting is necessary.
Example
- The result of the integer division .
- The result of the float division is .
Print:
0
0.6
Solution of the question
if __name__ == '__main__':a = int(input())b = int(input())print(a // b)print(a / b)
Another way of solving this is:-if __name__ == '__main__':a = int(input())b = int(input())x=a/b;print(int(x));print (x);
0 Comments