Skip to content

Commit e248524

Browse files
committed
first day
1 parent 1736fd8 commit e248524

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

Practice/try.py

+33
Original file line numberDiff line numberDiff line change
@@ -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+
# x = int(input())
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

Comments
 (0)