alien_o = {"Colour" : "Green"}print(f"The colour is now {alien_o["Colour"]}.")What's wrong with these lines of code? The closing bracket and the curly bracket is affected by the quotes, and I don't understand why.
alien_o = {"Colour" : "Green"}print(f"The colour is now {alien_o["Colour"]}.")What's wrong with these lines of code? The closing bracket and the curly bracket is affected by the quotes, and I don't understand why.