We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1736fd8 commit e248524Copy full SHA for e248524
Practice/try.py
@@ -0,0 +1,33 @@
1
+## =========== LEVEL 1 ===========
2
+# l=[]
3
+# for i in range(2000, 3201):
4
+# if (i%7==0) and (i%5!=0):
5
+# l.append(str(i))
6
+
7
+# print(','.join(l))
8
9
10
+# def fact(x):
11
+# if x == 0:
12
+# return 1
13
+# return x * fact(x - 1)
14
15
+# x = int(input())
16
+# print(fact(x))
17
18
19
+# con = {}
20
21
22
+# for i in range(1, x+1):
23
+# con[i] = i*i
24
25
+# print(con)
26
27
28
+data = input()
29
+l = data.split(",")
30
+t = tuple(l)
31
32
+print(l)
33
+print(t)
0 commit comments