384
edits
Changes
m
→PART 2 - Searching and Validating: fix typo
s1 = 'Seneca'
print(s1, 'contains letter s? ->', 's' in s1))print(s1, 'contains letter S? ->', 'S' in s1))
</source>Did it produce the same result as the find() function in previous python code example?