diff options
Diffstat (limited to 'pythonProgram/main.py')
-rwxr-xr-x | pythonProgram/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pythonProgram/main.py b/pythonProgram/main.py index 2d89586..de977f5 100755 --- a/pythonProgram/main.py +++ b/pythonProgram/main.py @@ -318,7 +318,7 @@ def speedlim(): while int(carSpeed) <= int(speedLimit): carSpeedDummy = open("./files/carSpeed.txt", "r") carSpeed = carSpeedDummy.read() - print("Under the Speed Limit") + print("Under the Speed Limit with a speed of ", carSpeed) time.sleep(5) ################## |