Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

Python Basic

Python Number Pattern Programs

Python Number Pattern 60

Posted in Python Tutorial
Updated on Jan 10, 2024
By Mari Selvan
👁️ 277 - Views
⏳ 4 mins
💬 1 Comment
Python Number Pattern 60

Photo Credit to CodeToFun

Python Number Pattern 60

Here`s a program that prints the above number pattern using Python Programming:

example.py
Copied
Copy To Clipboard
import math
num = 86523;

while(num != 0):
    print(num, end="")
    num = math.floor(num / 10);
    print()

💻 Testing the Program

When you run the above program, it will print the following output:

Output
86523
8652
865
86
8

🧠 How the Program Works

Let's break down the logic behind the code:

  1. Import the math module: The program starts by importing the math module, which provides various mathematical functions and constants.
  2. Initialize the num variable: The program initializes the num variable with the value 86523.
  3. Enter the while loop: The program enters a while loop with the condition num != 0. This means the loop will continue executing as long as num is not equal to 0.
  4. Print the current value of num: Inside the loop, the program prints the current value of num using the print() function with the argument end="". The end="" argument ensures that the next print statement will not start on a new line, allowing the digits to be printed side by side.
  5. Update the value of num: After printing the current value of num, the program updates the value of num by dividing it by 10 and then applying math.floor to ensure that the result is rounded down to the nearest integer. This effectively removes the last digit of the current value of num.
  6. Print a new line: After updating num, the program uses another print() statement without any arguments to print a new line. This separates the output of each iteration on different lines.
  7. Repeat the loop: The program continues to execute the loop until the value of num becomes 0.
  8. Terminate the loop: Once num becomes 0, the loop terminates, and the program execution completes.

💯 Tips for Enhancement:

Explore the versatility of this pattern by adjusting its parameters. Whether you increase or decrease the size, tweak the spacing, or modify the characters used, each change opens up a world of possibilities, allowing you to customize and create your unique visual effects.

✔ Conclusion:

Creating visually appealing patterns is not only a fun endeavour but also a great way to enhance your programming or design skills. We hope this tutorial has inspired you to explore the world of creative coding. Share your creations with us, and let your imagination run wild!

🤗 Closing Call-to-Action:

We'd love to see your unique interpretations of the number pattern. Share your creations in the comments below, and don't hesitate to reach out if you have any questions or suggestions for future tutorials. Happy coding!

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
7 months ago

If you have any doubts regarding this article (Python Number Pattern 60), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy