In [1]:
import gym
import numpy as np
In [2]:
env = gym.make('CartPole-v0')
In [3]:
box = env.observation_space
In [6]:
box.high
Out[6]:
In [7]:
box.low
Out[7]:
In [8]:
12 * np.pi * 2 / 360
Out[8]:
In [9]:
box.sample
Out[9]:
In [10]:
box
Out[10]:
In [11]:
box.contains
Out[11]:
In [ ]: