Parallel Assignment is a way to assign a group or series of variables in one statementx = 100y = 200z = 500#With parallel assignment, you do the same thing by separating the variables, then the values, with commas:x, y, z = 100, 200, 500