Question: function in python Three Numbers Have the function ThreeNrumbers (str) take the str parameter being passed and determine if exactly three unique, single-digit integers occur
function in python

Three Numbers Have the function ThreeNrumbers (str) take the str parameter being passed and determine if exactly three unique, single-digit integers occur within each word in the string. The integers can appear anywhere in the word, but they cannot be all adjacent to each other. If every word contains exactly 3 unique integers somewhere within it, then return the string true, otherwise return the string false. For example: if stx is "2hell603 wor617d2" then your program should return "true" but if the string is "hell2680 w6or2/4d" then your program should return "false" because all the integers are adjacent to each other in the first word
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
