I am currently learning the basics of networking in Python and keep seeing this syntax, a variable, followed by another variable, but separated with a comma.
conn, address = s.accept()
I understand the s.accept(), I am just unsure of the variable that I am assigning the result of s.accept() to. When entering:
type(conn, address)
I am returned with a Tuple but I do not understand how the conn and address play any part in a Tuple, and was wondering if I could receive some guidance as to what this syntax means.
Thanks in advance, Ollie.