News
LATEST NEWS
The summer is over, but the opportunities for development and receiving pleasant prizes have not gone away with it!
Results of the August lottery for affiliates:
200 000 р - ticket 161 - 2081825
150 000 р - ticket 183 - 3670725
100 000 р - ticket 171 - 1088499
80 000 р - ticket 198 - 3670725
50 000 р - ticket 158 - 2962529
20 000 р - ticket 185 - 1088499
How to check the result:
1. Go to the website https://rextester.com/l/python3_online_compiler
2. Copy the code below *
3. In the code, replace "???" for the number of tickets and the EUR / USD rate for today at http://xe.com (= 1.19032)
4. Click Run it
*
# code that selects winners
import random
import sys
print ("python version -", sys.version)
number of_tickets = ??? # ???? will be replaced by the total number of tickets - it will be known at the time of the drawing
course_euro = ??? # ??? will be replaced by the EUR / USD rate at the close of the session on the next day after the end of ticket issuance xe.com/currencytables/?from=USD
random.seed (euro_ rate)
seats = list (range (1, number of_tickets + 1))
random.shuffle (locations)
print ("200 thousand rubles - ticket #", seats [0])
print ("150 thousand rubles - ticket #", seats [1])
print ("100 thousand rubles - ticket #", seats [2])
print ("80 thousand rubles - ticket #", seats [3])
print ("50 thousand rubles - ticket #", seats [4])
print ("20 thousand rubles - ticket #", seats [5])