You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue :
There's a syntax error in the code under the file/path: python/00_python_colab/02_data_types/.
Specifically, the comparison by ID is written as if(id(shark1_age) id(shark2_age)): which is missing ==.
It should be if (id(shark1_age) == id(shark2_age)): to work correctly.