I am trying to use
del df['CustomerAge']
del df['ID']
using a Jupyter notebook on a Windows 10 PC running 1803, installed via Anaconda and fully updated. The first row runs just fine while the second one won't run. But on two friends of mine it works, they are using a Mac though...
I am calling del df['ID']
multiple times in the code, it never works - as if it would have a problem with the name "ID".
How can I solve this? (Without buying a Mac...)