While taking outputs from step function of openAI gym environment _ used as the fourth variable.Is it to just for the values which we don't want to use? is there any kind of advantage for using _ instead of any other name?
import gym
env = gym.make('CartPole-v0')
for i_episode in range(20):
observation = env.reset()
for t in range(100):
env.render()
print(observation)
action = env.action_space.sample()
observation, reward, done, _ = env.step(action)
if done:
print("Episode finished after {} timesteps".format(t+1))
break