-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraft.py
59 lines (54 loc) · 1.38 KB
/
draft.py
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
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
# 多福红包600s收入 满福红包900s收入 相册60s收入
# lv. in-b out-aa
# epic star 1
# 803 27.2 85.3
# 824 48.4 168
# 825 49.7 173
# 828 53.8 190
# 829 55.2 196
# rare star 3
# 803 107 88.3
# 824 191 175
# 825 196 181
# 828 212 199
# 829 218 205
# common star 4
# 803 507 355
# 823 711
# 824 902 737
# 827 978 816
# 828 1000 843
# 829 1020 871
# rare
# 803 150 88.3
# 804 154 91.3
# 805 159 94.4
# 806 163 97.5
# 807 167 100
# 808 172 103
# 809 176 106
# 810 180 110
# 811 186 114
# 812 192 118
# 813 197 122
# 814 203 126
# array = [88.3, 91.3, 94.4, 97.5, 100., 103., 106., 110., 114., 118., 122., 126., 130., 135., 139., 143., 148., 152.,
# 158.]
# print [array[idx] - array[idx - 1] for idx in range(1, len(array))]
# print [array[idx] / array[idx - 1] for idx in range(1, len(array))]
# print [('%.1f' % (88.3 * 1.033 ** idx)) for idx in range(1, len(array))]
# print array[1:]
# print [('%.1f' % (85.3 * 1.033 ** idx)) for idx in range(21, 27)]
# import math
# print math.log(2, 1.033)
# 829-871 830-899
# 807-408
# array = [342., 355., 368., 381., 394., 408.]
# print [array[idx] - array[idx - 1] for idx in range(1, len(array))]
# print [array[idx] / array[idx - 1] for idx in range(1, len(array))]
# print [('%.1f' % (341.5 * 1.03526492384 ** idx)) for idx in range(27, 29)]
# print array[1:]
# import math
# print math.log(2, 1.0352)
# print 2**(1./20.)