def MyFunction(height, weight): print "Your height is: ", height print "Your weight is: ", weight #MyFunction("5'' 6'", 155) def DescribeMe(favority_color, hair_color, car_model): print "My", hair_color, "hair waves", "in the wind as i drive my", favority_color, car_model #DescribeMe("red", "brown", "subaru outback") # My brown hair waves in the wind as I drive my red subaru outback. #DescribeMe("white", "blond", "chevy lumina") # My blond hair waves in the wind as I drive my white chevy lumina. #DescribeMe("black", "Brown","nissan altima") #My brown hair waves in the wind as i drive my black nissan altima def Problem1(birth_day, last_name): print last_name, birth_day Problem1("8/17/1983", "Ginzburg") Problem1("01/26/32", "Grimson")
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