2 from __future__
import print_function
4 names = [
"Anna",
"Beth",
"Carmen",
"Jennifer",
"Jessica",
"Kimberly",
"Kristina",
"Laura",
"Mary",
"Sarah",
"Alfred",
"Charles",
"Daniel",
"James",
"John",
"Luis",
"Paul",
"Richard",
"Robert",
"Steve"]
6 locations = [
'kitchen',
'livingroom',
'hall',
'bedroom',
'office']
26 prefix = bcolors.HEADER +
"[Person Recognition] " + bcolors.ENDC
29 print(prefix + bcolors.OKBLUE + sentence + bcolors.ENDC)
32 print(prefix + bcolors.FAIL + sentence + bcolors.ENDC)
35 print(prefix + bcolors.WARNING + sentence + bcolors.ENDC)