I am trying to find an effective condition statement which executes code.
I am looking at something along the lines of,
if for all in list[1]['purchased'] == False:
main()
I Have items inside a list which are all nested lists. Each nested list consists of two dictionaries, whereby the 2nd dictionary has a KEY "purchased". this is consistent for every item in the main list.
Example:
Main_list = [[{'time': str, 'price': int},{'name': "Bob", 'stock purchased': bool}],
[{'time': str, 'price': int}, {'name': "Bob", 'stock purchased': bool}]]
Any help would be much appreciated!
kindest regards, Andrew
Aucun commentaire:
Enregistrer un commentaire