Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Fabrice ALLAIN
aria_tuto
Commits
a8c3ff3f
Commit
a8c3ff3f
authored
Feb 11, 2019
by
Fabrice ALLAIN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
3dece1da
Pipeline
#9559
failed with stages
in 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
Vehicle.py
Vehicle.py
+50
-0
No files found.
Vehicle.py
0 → 100644
View file @
a8c3ff3f
class
Vehicle
(
object
):
def
__init__
(
self
,
speed
=
0
):
self
.
speed
=
speed
self
.
odometer
=
0
self
.
time
=
0
def
say_state
(
self
):
print
(
"I'm going {} kph!"
.
format
(
self
.
speed
))
def
accelerate
(
self
):
self
.
speed
+=
5
def
brake
(
self
):
if
self
.
speed
<
5
:
self
.
speed
=
0
else
:
self
.
speed
-=
5
def
step
(
self
):
self
.
odometer
+=
self
.
speed
self
.
time
+=
1
def
average_speed
(
self
):
if
self
.
time
!=
0
:
return
self
.
odometer
/
self
.
time
else
:
pass
if
__name__
==
'__main__'
:
my_car
=
Car
()
print
(
"I'm a car!"
)
while
True
:
action
=
input
(
"What should I do? [A]ccelerate, [B]rake, "
"show [O]dometer, or show average [S]peed?"
).
upper
()
if
action
not
in
"ABOS"
or
len
(
action
)
!=
1
:
print
(
"I don't know how to do that"
)
continue
if
action
==
'A'
:
my_car
.
accelerate
()
elif
action
==
'B'
:
my_car
.
brake
()
elif
action
==
'O'
:
print
(
"The car has driven {} kilometers"
.
format
(
my_car
.
odometer
))
elif
action
==
'S'
:
print
(
"The car's average speed was {} kph"
.
format
(
my_car
.
average_speed
()))
my_car
.
step
()
my_car
.
say_state
()
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment