#Josh Roybal #CIS 122 #Chapter 5 Programming Exercise #6 hours = 1 speed = 0 time = 0 speed = float(input("Please enter the speed of the vehicle in mph: ")) time = int(input("How many hours has the vehicle traveled?: ")) while hours <= time: distance = speed * hours print('After hour', hours, ', the distance traveled is', distance, 'miles. \n') hours += 1 #I started using pycharm to edit code. It seemed a little friendlier #but the output on Python Fiddle makes me cringe #Sorry about that
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question