In [1]:
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


Out[2]:
('Some text', 12, 14.0, False)