User Tools

Site Tools


ico

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ico [2015-04-27 18:17:49]
ico [2015-04-27 18:17:49] (current)
Line 1: Line 1:
 +====== Generátor IČO ======
  
 +<code python>
 +import random,math
 +
 +check=0
 +for i in list(reversed(range(2,​ 9))):
 +  num = math.floor(random.uniform(0,​ 10))
 +  check += i*num
 +  print(num, end=""​)
 +
 +check = (11 - check%11) % 10
 +print(check)
 +</​code>​
 +
 +http://​www.kolej.mff.cuni.cz/​~dan/​kody.html#​ICO
ico.txt · Last modified: 2015-04-27 18:17:49 (external edit)