-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.py
More file actions
49 lines (43 loc) · 730 Bytes
/
testing.py
File metadata and controls
49 lines (43 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
print(['string'] * 2)
# print(list[0:4])
# for i in range(10):
# print(i)
#
#
# def consume_input(amount, input):
# value = input[:amount]
# input = input[amount:]
# return value
#
#
# # consume_input(2, list)
# with open('file_to_write', 'w') as f:
# f.write('file contents')
# for i in range(1, 10000, 50):
# hundreds = int((i / 100) % 10)
# print(str(i) + ": " + str(hundreds))
#
# number = 0
#
# marbles = []
#
# marbles.insert(0,'a')
# marbles.insert(1,'b')
# marbles.insert(2,'c')
# marbles.insert(3,'d')
# marbles.insert(4,'e')
# marbles.insert(2, '2' )
#
#
#
#
#
#
# print (5 % 5)
# print('[%s]', ', '.join(map(str, list)))
#
#
#
#
# round(10000, 3)