Question: Given the variable 's' containing the string value below, determine the value for the variable result after each of the following statements is executed or


Given the variable 's' containing the string value below, determine the value for the variable result after each of the following statements is executed or specify error if a Python exception would be thrown: 1. s"Spooky Action at a Distance." a.) result s.replace ('o','' b.) result - len (s) c.) result-ss d.) result- s.upper () e.) resull - s.lind ('Distance'.capitalize )) f.) result -s.find ('action') 2. - Write the interactive Python module CheckKeyword. Output to the screen the result of check if the string 'KEY is in the string input by the user - The result should be the index where the string 'KEY' was found or -1 due to not being found - The check should NOT be case sensitive 3. - Write the interactive Python module Modifylnput Accept a string as input from the user. - Reverse the string. Uppercase the string - Replace all occurrences of the letter 'E' whether upper or lower to an '@ Output the result to the screen - Note: Reverse, Uppercase, and Replace must be done within the same statement
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
