첫 번째 커밋

This commit is contained in:
javamon
2025-12-06 22:31:19 +09:00
commit 849a100fa9
33 changed files with 6613 additions and 0 deletions

14
test.py Normal file
View File

@@ -0,0 +1,14 @@
import math
from math import log10, floor
def round_sig(x, sig=2):
return round(x, sig - int(floor(log10(abs(x)))) - 1)
price = 7200
seeds = 27.86
cnt = seeds/price
print(str(cnt)[:5])