notebook.community
Edit and run
In [1]: a = "Some text" b = 12 c = 14.0 d = False print("This should be ignored")
a = "Some text" b = 12 c = 14.0 d = False print("This should be ignored")
This should be ignored
In [2]: a, b, c, d
a, b, c, d
Out[2]: ('Some text', 12, 14.0, False)
('Some text', 12, 14.0, False)