The document lists 26 Python script ideas, including scripts to perform basic math operations like addition and subtraction, calculate factors or factorials of numbers, determine if a number is prime, generate the Fibonacci sequence, and check if a number is an Armstrong number. It also provides examples of scripts to print number patterns, calculate electricity bills based on usage, and develop basic chatbots.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
50 views1 page
List of The Python Scripts
The document lists 26 Python script ideas, including scripts to perform basic math operations like addition and subtraction, calculate factors or factorials of numbers, determine if a number is prime, generate the Fibonacci sequence, and check if a number is an Armstrong number. It also provides examples of scripts to print number patterns, calculate electricity bills based on usage, and develop basic chatbots.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
List of the Python Scripts
1. Write a Python Script for addition of numbers?
2. Write a Python Script for subtraction of numbers? 3. Write a Python Script for basic calculator for performing addition/ subtraction/ multiplication/ division (by using Static method)? 4. Write a Python Script to show the use of floor division and exponential operators? 5. Write a Python Script for basic calculator for performing addition/ subtraction/ multiplication/ division (by using Dynamic method)? 6. Write a Python Script to find the greatest numbers from the entered numbers (two)? 7. Write a Python Script to find the number is positive or negative? 8. Write a Python Script to find if the person is eligible to vote or not? 9. Write a Python Script to print from 1 to 10? 10. Write a Python Script to print from 10 to 1? 11. Write a Python Script to find the area of any mathematical figure like square/ rectangle/ etc.? 12. Write a Python Script to print the even numbers or odd numbers? 13. Write a Python Script to find the factors of the entered number? 14. Write a Python Script to find the sum of the first n natural numbers? 15. Write a Python Script to convert metres into kilometres and remaining metres? 16. Write a Python Script to print the table of an entered number? 17. Write a Python Script to find the factorial of a number? 18. Write a Python Script to swap two numbers (Method 1- by using the third temporary variable; Method 2 – by not using the third temporary variable)? 19. Write a Python Script to find the number is prime number or not? 20. Write a Python Script to print the Fibonacci series? 21. Write a Python Script to generate electricity bill as per the following criteria: If units > 0 but units < 101 then per unit ₹ Rs.1.50 If units > 100 but units < 301 then per unit ₹ Rs.3 If units > 300 then per unit ₹ Rs.5 22. Write a Python Script to develop a simple chat bot for performing the four basic operations like addition/ subtraction/ division/ multiplication? 23. Write a Python Script to develop a chat bot which will keep on performing till the user wants it for performing the four basic operations like addition/ subtraction/ division/ multiplication? 24. Write a Python Script to find that if the number is Armstrong Number or not? 25. Write a Python Script to print the following patterns: 1 * **** 1 12 ** *** 23 123 *** ** 456 1234 **** * 7 8 9 10 26. Write a Python Script to find that if the entered character is vowel or a consonant?