Answer any 6 Questions
1. Try the following
* * * * *
* * * *
* * *
* *
*
2. Writ a script to display Fibonacci series
3. Write a script to display prime numbers between 1-99
4. Write a script to check given string Palindrome or not
5. Analyse the following script
lst=[3,4,6,1,2]
lst[1:2]=[7,8]
print(lst)
6 Output of the following script
pylist=[1,2,3,4,[5,6,7,8,[9,10,11,12,[13,14,15,16]]]]
print(pylist)
print(pylist[4][4][4][3])
7. Python Program to Swap the First and Last Value of a List
8. Print the multiplication table for given number.
9. Count the Number of Vowels in a String.
10. Calculate the Number of Digits and Letters in a String