Optional Arguments

PHOTO EMBED

Sat Jun 04 2022 22:28:30 GMT+0000 (Coordinated Universal Time)

Saved by @vjg #python

def add(*vectors): 
	return (sum([v[0] for v in vectors]), sum([v[1] for v in vectors]))
content_copyCOPY