Python supports multiple assignments to multiple variables.
True
Reason — Python supports multiple assignments to multiple variables in a single line.For example, msg, day, time = 'Meeting', 'Mon', 9
msg, day, time = 'Meeting', 'Mon', 9