from functools import reduce
print(reduce(lambda x, y: x/y, map(int, input("Type numbers over space: ").split())))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from functools import reduce
print(reduce(lambda x, y: x/y, map(int, input("Type numbers over space: ").split())))