Skip to content

Instantly share code, notes, and snippets.

@liketheflower
Created August 2, 2022 01:08
Show Gist options
  • Save liketheflower/31acd0386251a8edc098a39b9b9b552c to your computer and use it in GitHub Desktop.
Save liketheflower/31acd0386251a8edc098a39b9b9b552c to your computer and use it in GitHub Desktop.
import gym
env = gym.make("MountainCar-v0")
print("MoutainCar env")
print(env)
print("action_space")
print(env.action_space)
print("observation_space")
print(env.observation_space)
print("reward_range")
print(env.reward_range)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment