1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-02-23 12:55:17 +00:00

Updated Docker Installation (textile)

FrancescoFdd5 2020-01-08 20:06:14 +01:00
parent 3074d563ba
commit fce207bafc

@ -15,8 +15,7 @@ yum install git python</code></pre>
# Enter python command interpreter:
<pre><code>python</code></pre>
# Generate random number using Python:
<pre><code>
import random, string
<pre><code>import random, string
haystack = string.ascii_letters + string.digits + string.punctuation
print(''.join([random.SystemRandom().choice(haystack) for _ in range(50)]))
</code></pre>