- 1
Spot the error in python coding.
temperatures={ â New Yorkâ:105} if âNew Yorkâ in temperatures: if temperatures [âNew Yorkâ]>90: print(âThe city is meltingâ) else: print(âThe temperature in New York isâ, temperatures [âNew Yorkâ]) else: print(âThe temperature in New York is unknownâ)
1 Answer