1. Create a function is_palindrome_sentence(..) that has one string parameter and return True if the parameter is a sentence palindrome and False otherwise. 1.1. Go over all string parameters and create a new string with no " "" "!", "?", 1.2. Unify all characters in a created string using upper or lower 1.3. Use slicing with specific steps to create a backward string (You also can use for loop, but try slicing if you can) 1.4 Compare the forward and backward strings to get the result and return it. 2. Create a program that would read a number of following sentences and as many sentences. 3. Check each sentence on being a palindrome. 4. Print the number of palindromes.
1. Create a function is_palindrome_sentence(..) that has one string parameter and return True if the parameter is a sentence palindrome and False otherwise. 1.1. Go over all string parameters and create a new string with no " "" "!", "?", 1.2. Unify all characters in a created string using upper or lower 1.3. Use slicing with specific steps to create a backward string (You also can use for loop, but try slicing if you can) 1.4 Compare the forward and backward strings to get the result and return it. 2. Create a program that would read a number of following sentences and as many sentences. 3. Check each sentence on being a palindrome. 4. Print the number of palindromes.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
In python!
The code should have this structure:
def ...
if __name__ == "__main__":
pass

Transcribed Image Text:Example function parameters:
is_palindrome_sentence ("Mr. Owl ate my metal worm")
Example function return value:
True
Example program input:
3
Do geese see God?
Was it a
car or a cat I saw?
Неу, nice code!
Example program output:

Transcribed Image Text:Learning Objectives
• Create a function with the required parameter and return value
• Use for loop to create a string with no spaces, no commas, no ? and !.
• Use .lower () or "".upper() to unify all characters in string
• Use slicing with step to get reversed string
Instructions
Have you heard about palindromes? About sentence palindromes? Examples of sentence palindromes: "Mr. Owl ate my metal worm", "Do
geese see God?", "Was it a car or a cat I saw?" Please, help us check that the given sentences are palindromes.
1. Create a function is_palindrome_sentence(..) that has one string parameter and return True if the parameter is a sentence
palindrome and False otherwise.
1.1. Go over all string parameters and create a new string with no
"!", "?",
%3D
1.2. Unify all characters in a created string using upper or lower
1.3. Use slicing with specific steps to create a backward string (You also can use for loop, but try slicing if you can)
1.4 Compare the forward and backward strings to get the result and return it.
2. Create a program that would read a number of following sentences and as many sentences.
3. Check each sentence on being a palindrome.
4. Print the number of palindromes.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images

Knowledge Booster
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.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education