You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
429 B
Python
20 lines
429 B
Python
# uso:
|
|
# python3 sejmanas.py 1660 | xclip -sel c
|
|
# (donde 1660 es el número de sejmana actual)
|
|
import sys
|
|
|
|
first = 1655
|
|
s = int(sys.argv[1])
|
|
# s=1660
|
|
#print('<p id="count" aria-hidden="true">')
|
|
for i in range(1,3900):
|
|
if i<=s:
|
|
if i<first:
|
|
print('.',end='')
|
|
else:
|
|
print('<a href="#sjm-',i,'" title="sjm-',i,'">.</a>',sep='',end='')
|
|
else:
|
|
print('*',end='')
|
|
|
|
#print('</p>')
|