Problem A: Write a Python program that reads a list of strings from a file "strings.txt" (see Figure 1) and prints • Palindrome words and non-palindrome words in separate columns (as shown in Figure 2) • Total number of words in the input file • Palindrome Percentage, which is computed as follows Number of palindrome words Total number of words in the file x 100 Enter filename: strings.txt Palindrome Non-Palindrome redivider redivider deified deified sentences sentences noon noon words words civic civic radar radar different different definition context definition context level level reviver reviver malayalam palindrome genetics hannah ada malayalam palindrome genetics hannah ada anna meaning python anna meaning python Total numbers of words is 20 Figure 1 A sample input file 55.000 % of numbers are palindrome Figure 2 A sample output using sample input in figurel

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter13: File Input And Output
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

please do not use java 

Problem A:
Write a Python program that reads a list of strings from a file "strings.txt" (see Figure 1) and prints
Palindrome words and non-palindrome words in separate columns (as shown in Figure 2)
Total number of words in the input file
• Palindrome Percentage, which is computed as follows
Number of palindrome words
Total number of words in the file
х 100
Enter filename: strings.txt
Palindrome
Non-Palindrome
redivider
redivider
deified
deified
sentences
sentences
---
noon
noon
words
words
civic
civic
radar
radar
different
different
definition
definition
context
context
level
level
reviver
reviver
malayalam
malayalam
palindrome
genetics
hannah
palindrome
genetics
hannah
ada
ada
anna
meaning
python
anna
meaning
======-====
python
Total numbers of words is
20
Figure 1 A sample input file
55.000 % of numbers are palindrome
Figure 2 A sample output using sample input in figurel
Transcribed Image Text:Problem A: Write a Python program that reads a list of strings from a file "strings.txt" (see Figure 1) and prints Palindrome words and non-palindrome words in separate columns (as shown in Figure 2) Total number of words in the input file • Palindrome Percentage, which is computed as follows Number of palindrome words Total number of words in the file х 100 Enter filename: strings.txt Palindrome Non-Palindrome redivider redivider deified deified sentences sentences --- noon noon words words civic civic radar radar different different definition definition context context level level reviver reviver malayalam malayalam palindrome genetics hannah palindrome genetics hannah ada ada anna meaning python anna meaning ======-==== python Total numbers of words is 20 Figure 1 A sample input file 55.000 % of numbers are palindrome Figure 2 A sample output using sample input in figurel
Each line in the input file contains one word as shown in Figure 1. Your program should read each
word and identify if it is a palindrome or not. A palindrome is a text that reads the same forward
(right to left) and backward (left to right).
Your program must define and use the following functions:
• isPalindrome(): receives a string and returns True if the string is palindrome, otherwise it
returns False. For example, if the string is "Python" the function will return False. If the string is
"Hannah" it returns True.
• displayHeader(): displays the header (the first three lines) shown in Figure 2
main(): opens the input file "strings.txt" for reading, reads data from it, and calls the various
functions, and finally prints the results on screen formatted as shown in Figure 2. If the input
file is not found, an exception is raised and an error message must be displayed.
Transcribed Image Text:Each line in the input file contains one word as shown in Figure 1. Your program should read each word and identify if it is a palindrome or not. A palindrome is a text that reads the same forward (right to left) and backward (left to right). Your program must define and use the following functions: • isPalindrome(): receives a string and returns True if the string is palindrome, otherwise it returns False. For example, if the string is "Python" the function will return False. If the string is "Hannah" it returns True. • displayHeader(): displays the header (the first three lines) shown in Figure 2 main(): opens the input file "strings.txt" for reading, reads data from it, and calls the various functions, and finally prints the results on screen formatted as shown in Figure 2. If the input file is not found, an exception is raised and an error message must be displayed.
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Concept of Parenthesis
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr