We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2d9791 + ff0c0c3 commit ed48c7fCopy full SHA for ed48c7f
2 files changed
helloWorld.py
@@ -0,0 +1,4 @@
1
+#Say "Hello, World!" With Python
2
+
3
+if __name__ == '__main__':
4
+ print("Hello, World!")
weirdInts.py
@@ -0,0 +1,14 @@
+ n = int(input())
+ if n%2 == 0:
+ if n >= 2 and n <=5:
5
+ print('Not Weird')
6
+ elif n >= 6 and n <= 20:
7
+ print('Weird')
8
+ else:
9
10
11
12
13
14
0 commit comments