Q19Single correct3 Marks3 Sep 2023
What is the output of the following code snippet?
```
D = {'Anita': 23, 'Ashwin': 43, 'Ahana': '24', 'Adarsh': 30, 'Archana': 15}
try:
for key in D:
value = D[key]
if type(value) == str:
raise 'error'
print(f'{key}:{value}')
except:
print("values cannot be strings")
```