w3resource

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:

Python: Test if the letters in the second string are present in the first string.
Python: Test if the letters in the second string are present in the first string.

Flowchart:

Flowchart: Python - Test if the letters in the second string are present in the first string.

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.



Follow us on Facebook and Twitter for latest update.