Open main menu

CDOT Wiki β

Changes

OPS435 Online Lab4

2 bytes removed, 14:33, 16 June 2020
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?