Python: Test if the letters in the second string are present in the first string
Python Basic - 1: Exercise-88 with Solution
Write a Python program that accepts two strings and determines whether the letters in the second string are present in the first string.
Sample Solution:
Python Code:
def string_letter_check(str1, str2):
return all([char in str1.lower() for char in str2.lower()])
print(string_letter_check("python", "ypth"))
print(string_letter_check("python", "ypths"))
print(string_letter_check("python", "ypthon"))
print(string_letter_check("123456", "01234"))
print(string_letter_check("123456", "1234"))
Sample Output:
True False True False True
Pictorial Presentation:
Flowchart:

Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to check whether a given employee code is exactly 8 digits or 12 digits.
Next: Write a Python program to compute the sum of the three lowest positive numbers from a given list of numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join