File size: 290 Bytes
d7b60cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Get an observation and print its structure
obs = robot.get_observation()

# See what type it is
print(type(obs))

# If it's a dictionary, print the keys
print(obs.keys())

# Print the full observation to see the structure
print(obs)

# Or for a nicer view
import pprint
pprint.pprint(obs)