sphinxtest.beta package

Module contents

The __init__ docstr

class Waldo(pos)[source]

Bases: object

This is the Waldo class

Parameters:
  • pos ((Tuple(int,int,int)):) – Waldo’s current position
  • pos – Start Waldo in this position
whereIsHe()[source]

Show Waldo’s Position

Returns:3 dimension coordinate of Waldo’s position
Return type:list

Example

>>> from sphinxtest.beta import Waldo
>>> w=Waldo([2,3,5])
>>> w.whereIsHe()
[2,3,5]