Skip to content

Commit ed48c7f

Browse files
authored
Merge pull request #1 from theangellmethod/firstbranch
First commit
2 parents e2d9791 + ff0c0c3 commit ed48c7f

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

helloWorld.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Say "Hello, World!" With Python
2+
3+
if __name__ == '__main__':
4+
print("Hello, World!")

weirdInts.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
if __name__ == '__main__':
2+
n = int(input())
3+
if n%2 == 0:
4+
if n >= 2 and n <=5:
5+
print('Not Weird')
6+
elif n >= 6 and n <= 20:
7+
print('Weird')
8+
else:
9+
print('Not Weird')
10+
else:
11+
print('Weird')
12+
13+
14+

0 commit comments

Comments
 (0)