(entities)
| 49 | |
| 50 | |
| 51 | def generate_dictionary(entities): |
| 52 | dictionary = {} |
| 53 | for i, entity in enumerate(entities): |
| 54 | key = f"Table and field required by {entity}" |
| 55 | value = "yyy" + str(i + 1) |
| 56 | dictionary[key] = value |
| 57 | return dictionary |
| 58 | |
| 59 | |
| 60 | def generate_dictionary_for_complex(entities): |