How do I check for a String regardless of case that is already in a List of strings or not?
I have this
current_activities = ['Free WiFi']
if activity in current_activities:
print("Yes it is already inside")
I want that whether activity = 'Free WiFi'
or activity = 'Free WIFI'
it should evaluate to true.