python if : in string code example
Example 1: python check if value in string
def is_value_in_string(value: str, the_string: str):
return value in the_string.lower()
Example 2: how to check a string in if statement python
if var is 'stringone' or 'stringtwo':
dosomething()