Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 227 Bytes

python.md

File metadata and controls

16 lines (11 loc) · 227 Bytes

SDKs - Python

Example - OpenAI Cartpole - Random Agent

import gym

env = gym.make('CartPole-v0')
env.reset()

for _ in range(1000):
    env.render()
    env.step(env.action_space.sample())
    
env.close()