9 lines
181 B
Python
9 lines
181 B
Python
![]() |
#!/usr/bin/env python
|
||
|
# coding=utf-8
|
||
|
|
||
|
class Elevator(object):
|
||
|
|
||
|
def __init__(self, direction=0, position=0):
|
||
|
self.direction = directopn
|
||
|
self.position = position
|