* in python mean code example
Example 1: what does += mean in Python
x = 0
while x < 5:
print(x)
x += 1 #the x += 1 expression is a shortend version for x = x + 1
Example 2: * meaning in python
The * in python represents "The rest".
Meaning it will take the remaining arguments that are left over in your
code and fit inside the variable OR you can use it as your primary
variable to store as many arguments that you want.
After doing this it it will convert them into a list.