Hey been learning python3 for a while.
Came across dictionaries and the dictionary_name.get() method and tried to get a random key value.
The problem:
data= {}
data.get('key',1)
it works and returns 1
But instead if I use data.get('key',01)
it says invalid token why is that?