Created
December 5, 2018 14:49
-
-
Save korkridake/8864d21edcefcd38f1eba151963e7693 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def rectangle(w, h): # dynamic typing | |
| # code block | |
| area = w * h | |
| return area | |
| def triangle(w, h): | |
| # area = .5 * w * h | |
| return .5 * w * h | |
| # main entry point | |
| w = int(input("width = ")) # string '5' "5" | |
| h = int(input("height = ")) # "3" | |
| # print(rectangle(w, h)) | |
| print(triangle(w,h)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment