1. Write a program to print the following pattern :
1
12
123
1234
333
22
1
2. Write a program to find the sum of the following series .
S=1+x2/3!- x3/4!+ x4/5!- x5/6!..... +xn/n
3. Write a program to input a no and to check whether to give no is a automorphic number or
not.
ex:25
252 =625 ends with 25
4. Write a program using function to do the following operation .
1.) *
**
***
****
321
21
1
2.)to check weather the given no is a Armstrong number or not . EX 153 = 13+53+33 =153
5. Write a program using function to do following operation :
1. def palin(n): to check the no is palindrome number or not ex: 141 reverse is also 141
2. def neon(n): to check the no is Neon number or not ex: 9= 92 → 81 → 8+1=9
NOTE : For now Do these question in your project file and also stick the output too in
your project file on the plain side of the page .