(x_train, y_train), (x_test, y_test) = mnist.load_data()
I'm still in the middle of learning the basic Python functions, and this is from the tensorflow website. What does this line do?
I've already learned Java, but so this is new to me. This line seems to initiate the variables x_train, y_train, x_test, and y_test, but if so I don't understand why there would be four variables formatted in such a manner.
Please explain it to a person who doesn't know Python, but has already learned Java.
According to tensorflow, mnist is a dataset.