Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Add missing person on list with default age 30
#python 3.5.2 #python 3.5.2 # List of strings my_list = ['john', 'james', 'joey'] # List of dictionary results = [{"name": 'john', "age": 20}, {"name": 'james', "age": 25}] # This is my code and its wrong. for name in my_list: found = False; for person in results: if person["name"] == name: found = True if not found: new_person = { 'name': name, 'age': 30 } results.append(new_person); print(results)
run
|
edit
|
history
|
help
0
Python.py
Prime Numbers :-> Sieve of Eratosthenes
function and doc string
Python3 - PDF PAGES SEPARATION
kenken1
Test
add lambda
sum of odd numbers
Assignment-3a
Ej2_python_204676887