def hotel_cost(nights): return nights * 140 ############################## def plane_ride_cost(city): if city == "Charlotte" : return 183 elif city == "Tampa" : return 220 elif city == "Pittsburgh" : return 222 elif city == "Los Angeles" : return 475 else: print "Sorry! No Tickets left." ############################### def rental_car_cost(days): per_day = 40 if days == 0: return 0 elif days<2: return per_day elif 3 <= days < 7: return days * per_day - 20 elif days >= 7 : return days * per_day - 50 else: print "none" return days * per_day ################################# print rental_car_cost(8)
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