You're a relationship scientist, and you've developed a questionnaire that determines a person's love score - a real-valued number between 0 and 100. Your theory is that two people with similar love scores should make a good match :kiss_woman_man:
Given the love scores for 10 different people, create a 2-d array where (i,j) gives the absolute difference of the love scores for person i and person j.
NumPy line wrapping tip
The 10x10 array you're about to build is kind of large. When printing the array in your console, NumPy might wrap the rows into multiple lines like this
To prevent line wrapping, use np.set_printoptions(linewidth=100000)
See set_printoptions()
for details.