if __name__ == '__main__':
i = int(input().strip())
f = float(input().strip())
s = input()
b = input().strip()
Assign(i, f, s, b)
I've been given a challenge: Write the function definition for the function 'Assign' the different types of variable in it's parameters to new variables.
What does " if name == 'main': "