You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in our docs.
# Tuples can hold multiple values, but for this example, we will use two (coordinates). point = (1, 1) # We can single out the coordinates by using the index. x_coordinate = point[0] y_coordinate = ...