Python Program to Find Armstrong Number between an Interval
We have already read the concept of Armstrong numbers in the previous program. Here, we print the Armstrong numbers within a specific given interval.
See this example:
- lower = int(input(“Enter lower range: “))
- upper = int(input(“Enter upper range: “))
- for num in range(lower,upper + 1):
- sum = 0
- temp = num
- while temp > 0:
- digit = temp % 10
- sum += digit ** 3
- temp //= 10
- if num == sum:
- print(num)
This example shows all Armstrong numbers between 100 and 500.
null
Output:

Python program to display calender
Python program to display calendar
It is simple in python programming to display calendar. To do so, you need to import the calendar module which comes with Python.
- import calendar
- And then apply the syntax
- (calendar.month(yy,mm))
See this example:
- import calendar
- # Enter the month and year
- yy = int(input(“Enter year: “))
- mm = int(input(“Enter month: “))
- # display the calendar
- print(calendar.month(yy,mm))
Output:
