This repository contains Python code challenges that address various programming tasks. Each task is described below, along with a brief explanation.
Calculate the sum of the series given by: sum = 1 + x/1 + x^2/2 + x^3/3 + .... + x^n/n
Find the sum of the series given by: sum = 1 + x/1! + x^2/2! + x^3/3! + .... + x^n/n!
Print numbers in reverse order with a difference of 2 between each consecutive number.
Check if a given number is a palindrome.
Print all Armstrong numbers in the range of 1 to 9000.
Multiply two positive numbers without using the *
operator.
Reverse all the numbers from 101 to 10,000.
Count the number of digits in a number and, if the count is greater than or equal to 5, print the first 5 digits of the number.
Calculate the sum of the digits of a number, and if the sum is between 20 and 30, print the subtraction of the sum.
Print the multiplication table in the range of 51 to 60.
Feel free to explore each task's respective directory for the Python code solutions and additional explanations.
Happy coding!