Re: Untitled

From Mammoth Hornbill, 10 Months ago, written in Python, viewed 237 times. This paste is a reply to Untitled from Alexandra Hoffmann - view diff
URL http://codebin.org/view/fca87ad0 Embed
Download Paste or View Raw
  1. def if_speed_ok(speed)
  2.     return speed <= 60
  3. current_speed = 46
  4. print(is_speed_ok(current_speed))
  5. current_speed = 70
  6. print(is_speed_ok(current_speed))
  7. current_speed = 60
  8. print(is_speed_ok(current_speed))

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Cute Mockingbird python 10 Months ago.

Reply to "Re: Untitled"

Here you can reply to the paste above