\myheading{random.choices() in Python 3} This is a very useful function\footnote{\url{https://docs.python.org/3/library/random.html\#random.choices}}: weights (or probabilities) can be added. (I used it in my Markov chains example (\ref{markov}).) For example: \lstinputlisting[style=custompy]{prob/markov/tst.py} Let's generate 1000 random numbers in 1..3 range: \begin{lstlisting} $ python3 tst.py | sort | uniq -c 234 ['1'] 613 ['2'] 153 ['3'] \end{lstlisting} "1" is generated in 25\% of cases, "2" in 60\% and "3" in 15\%. Well, almost. Here is another use of it. You know, when you send an email, the final destination is a server somewhere. But it may be irresponsible. So network engineers add additional servers, "relays", which can hold your email for some time. For example, what is about gmail.com? \begin{lstlisting} % dig gmail.com MX ... ;; ANSWER SECTION: gmail.com. 3600 IN MX 5 gmail-smtp-in.l.google.com. gmail.com. 3600 IN MX 10 alt1.gmail-smtp-in.l.google.com. gmail.com. 3600 IN MX 20 alt2.gmail-smtp-in.l.google.com. gmail.com. 3600 IN MX 30 alt3.gmail-smtp-in.l.google.com. gmail.com. 3600 IN MX 40 alt4.gmail-smtp-in.l.google.com. ... \end{lstlisting} The first server is primary (marked with 5). Other 4 (alt...) are relays. They can hold emails for \verb|user@gmail.com| if the main server is down. Of course, relays also can be down. So an MTA (Message transfer agent) tries to send an email via the first server in list, then via the second, etc. If all are down, MTA is waiting for some time (not infinitely). See also: \url{https://en.wikipedia.org/wiki/MX_record}. A number (5/10/20/30/40) is priority: \begin{lstlisting} MX records contain a preference indication that MUST be used in sorting if more than one such record appears (see below). Lower numbers are more preferred than higher ones. If there are multiple destinations with the same preference and there is no clear reason to favor one (e.g., by recognition of an easily reached address), then the sender-SMTP MUST randomize them to spread the load across multiple mail exchangers for a specific organization. \end{lstlisting} ( \url{https://tools.ietf.org/html/rfc5321} ) Now if you want your MTA be polite, you can make it poke relays with some probability, unloading the main mail server. In any case, the internal network withing Google is way better than a link between you and any of these mail servers. And it would be OK to drop an email to any of these mail servers listed in MX records. This is how a destination server can be chosen: \begin{lstlisting} random.choices(range(4), weights=[1/5, 1/10, 1/20, 1/40]) \end{lstlisting} I'm using reciprocal weights (1/x) because the lower priority, the higher probability it is to be chosen. What if I want to send 100 emails to \verb|someone@gmail.com|? \begin{lstlisting} >>> [random.choices(range(4), weights=[1/5, 1/10, 1/20, 1/40])[0] for x in range(100)] [1, 1, 2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 2, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 3, 0, 0, 2, 1, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 0, 3, 2, 0, 1, 2, 0, 1, 1, 3, 1, 1, 1, 1] \end{lstlisting} 1000? (I'm using the \verb|collections.Counter|\footnote{\url{https://docs.python.org/3/library/collections.html\#collections.Counter}} here for gathering statistics). \begin{lstlisting} >>> Counter([random.choices(range(4), weights=[1/5, 1/10, 1/20, 1/40])[0] for x in range(1000)]) Counter({0: 535, 1: 268, 2: 129, 3: 68}) \end{lstlisting} 535 emails will be sent via the first (primary) mail server, 268/129/68 -- via corresponding relays. This is probably not how MTAs usually operates, but this is how it could be done.