Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python - matching people based on city

students = [
    {
     'name': 'Sarah',
     'city': 'Manchester'
    },
    {
     'name': 'Mary',
     'city': 'London'
     }
    ,
    {
     'name': 'Charlotte',
     'city': 'Paris'
     },
    {
     'name': 'Carl',
     'city': 'Paris'
     }  
]

 

my_location = input('Which is your location?  ')
match_location = [student for student in students if student['city'] == my_location]
 
  
# Option 1     
if len(match_location) > 0:
    print('The location is:')    
    
    
# Option 2
if any(match_location):
    print('The location is:') 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #matching #people #based #city
ADD COMMENT
Topic
Name
7+1 =