Skip to content

Commit 8f123c2

Browse files
YouTubeYouTube
authored andcommitted
First few files in the Python for Beginners tutorial series
0 parents  commit 8f123c2

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

bmr.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
3+
weight = 82
4+
height = 185
5+
age = 18
6+
7+
bmr = 66.5 + (13.75 * weight) + (5 * height) - (6.755 * age)
8+
bmr = round(bmr)
9+
print(bmr)

hello_world.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Hello World!")

0 commit comments

Comments
 (0)