Ответ:
def units_digit():
a = float(input("Enter the number: "))
return int(a) % 10
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
def units_digit():
a = float(input("Enter the number: "))
return int(a) % 10