beta module

class beta.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

>>> Waldo([2,3,5])
>>> Waldo.whereIsHe()
>>> [2,3,5]