Write a program to find all the proper factors of an integer value entered by the user. Extension 1 Add all the values to a list Extension 2 Write the program so that it completes the task in as few Read More …
Author: Mathszone
Narcissistic numbers
Narcissistic numbers are a special type of number in which the sum of each digit is raised to the power of the number of digits in the number is equal to the number itself. For example, 153 is a narcissistic Read More …
Vampire Numbers
Vampire numbers are numbers that can be expressed as the product of two other numbers, where the digits of those two numbers are rearranged and combined to form the original number. Write a program which will check if a number Read More …
Calculator 1
Have a look at the code below Predict: Write down what you think it will do…. Run Were you correct? Investigate What is the purpose of each of the following commands? input() – Asks the user to type something into Read More …