Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Get expert answers to your questions quickly and accurately from our dedicated community of professionals. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.

grade 10 python exercise
Write a program that prints, as a word, the value of the last digit of the int variable number. For example, if the value of number is 547, the fragment should print:
The last digit of 547 is seven


Sagot :

number = 547

nums = {1:"one", 2:"two",3:"three",4:"four",5:"five",6:"six",7:"seven",8:"eight",9:"nine"}

print("The last digit of",number,"is",nums[number%10])

I wrote my code in python 3.8. I hope this helps.