Hallo
Ich fange gerade an, Python zu lernen. Ich schreibe den folgenden Code, um eine Zufallszahl mit der Länge s einschließlich 0,1,2,3 auszugeben.
import numpy as np
n_one =int(input('Insert the amount of 1: '))
n_two =int(input('Insert the amount of 2: '))
n_three = int(input('Insert the amount of 3: '))
l = n_one+n_two+n_three
n_zero = l+1
s = (2*(n_zero))-1
data = [0]*n_zero + [1]*n_one + [2]*n_two + [3]*n_three
print ("Data string length is %d" % len(data))
while data[0] == 0 and data[s-1]!=0:
np.random.shuffle(data)
datastring = ''.join(map(str, data))
datastring = str(int(datastring))
files = open('decode.txt', 'w')
files.write(datastring)
files.write('\n')
files.close()
print("Data string is : %s " % datastring)
Das Problem ist die Ausgabe. Ich möchte, dass die Ausgabe mit einer Zahl ungleich Null beginnt und mit 0 endet. Im Moment funktioniert es manchmal nicht sehr gut, wenn man "while" -Minuten verwendet. Wenn Sie Vorschläge haben, danke.