Grade 10 Python Exercise - Exciting Challenge to Practice Your Coding Skills!

How to Print the Last Digit of an Integer Variable as a Word in Python?

Can you write a Python program that prints, as a word, the value of the last digit of the int variable number?

Solution: Printing the Last Digit of an Integer Variable as a Word in Python

To achieve this task, you can write a Python program like the following:

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])

Hey coder, are you ready for an exciting Python exercise? Let's dive into this challenge and sharpen your coding skills!

The task at hand is to write a Python program that will print the last digit of an integer variable as a word. In the provided code snippet, the integer variable number is set to 547. The program utilizes a dictionary called nums to map the digits to their corresponding word representations.

By using the modulo operator (%) with 10 applied to the number variable, the program extracts the last digit. Then, it looks up the word representation of that digit from the nums dictionary and prints it out in a user-friendly format, showcasing the power and flexibility of Python programming.

This exercise not only challenges you to manipulate data and perform operations but also enhances your problem-solving skills. It's a fun and engaging way to explore the intricacies of Python and expand your coding knowledge.

← Speedy storage solutions for your laptop Adding a new hard drive what cable should you use →