Learn Python, Microsoft 365 and Google Workspace
Python str examples:
Problem Statement: [Python Quiz #66]
You are given a Python program that extracts and prints the last letter of a given name, “Ahmad”. However, the program contains a potential issue related to how string indexing is handled. Analyze the code and correct any possible errors related to the string indexing.
The code provided is:
name = "ahmad"
last_letter = name[5]
print(last_letter)
Task:
Answer Key (True/False):
What is the output of the following Python code? [Python Quiz #9]
def is_palindrome(s): return s == s[::-1]
is_palindrome(“racecar”)?
A) True B) False C) SyntaxError D) None of these
Watch this video for the answer: https://youtube.com/shorts/fYpVM6Tqf50?si=yyjM17NMUt5al1Bb
What is the output of the following Python code? [Python Quiz #17]
a = "Python is awesome"
print(a.find("is"))
Watch this video for the answer: https://youtube.com/shorts/6rZpvEfzWf4
What is the output of the following code? [Python Quiz #27]
a = "hello world"
print(a[-5:-2])
Watch this video for the answer: https://youtube.com/shorts/kLrdURzJ1Uk?si=N6LKU3v2ikrmgaFu
Answer key (Mutiple Choice):
Answer Key (Fill in the Blanks):
find_length
that takes a string input word
and returns the length of the word by counting the number of characters in it. You are not allowed to use the built-in len()
function.Function Signature:
def find_length(word: str) -> int:
Input:
word
which can contain letters, spaces, or special characters.
Output:find_length("python language")
Output:
15
Coding Challenge #1 You are in a college level English class, your professor wants you to write an essay, but you need to find out the average length of all the words you use. It is up to you to figure out how long each word is and to average it out.
Task: Takes in a string, figure out the average length of all the words and return a number representing the average length. Remove all punctuation. Round up to the nearest whole number.
Input Format: A string containing multiple words.
Output Format: A number representing the average length of each word, rounded up to the nearest whole number.
Sample Input: this phrase has multiple words
Sample Output: 6
Explanation: The string in question has five words with a total of 26 letters (spaces do not count). The average word length is 5.20 letters, rounding it up to the nearest whole numbers results in 6.
import math str1 = “this phrase has multiple words”
str_len = 0
words = str1.split()
for w in words: str_len += len(w)
result = math.ceil(str_len/len(words))
print(result)
Replace vowels in a string with an asterisk: Use a for
loop to replace all vowels in the string “Replace all vowels” with ‘*’.
for
loop to iterate through the string “Hello, World!” and print each character.for
loop to reverse the string “Python”.for
loop to count the number of vowels in the string “Hello, World!”.for
loop to count the number of times the letter ‘l’ appears in “Hello, World!”.for
loop to find and print the length of each word in the sentence “The quick brown fox”.for
loop to reverse each word in the string “Hello World” and print it as “olleH dlroW”.for
loop to count the number of times the letter ‘l’ appears in “Hello, World!”.for
loop to find and print the length of each word in the sentence “The quick brown fox”.for
loop to replace all vowels in the string “Replace all vowels” with ‘*’.for
loop to calculate the average length of words in the sentence “Calculate the average length of words in this sentence”.for
loop to count the number of consonants in the string “Count the number of consonants”.What will the output be for the following code?
for letter in "Python":
print(letter)
A) P\ny\nt\nh\no\nn
B) Python
C) P y t h o n
D) P\ny\nt\nh\no\n
Explanation: The for
loop iterates over each character in the string “Python”, printing them one by one.
Answer: A