At Westonci.ca, we connect you with experts who provide detailed answers to your most pressing questions. Start exploring now! Experience the ease of finding precise answers to your questions from a knowledgeable community of experts. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

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.