出力条件
こんにちは
pythonを習い始めたばかりのものです。
以下のプログラムで長さsで0,1,2,3を含む乱数を出力するコードを作成中です。
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)
問題は出力の方です。
出力は0でない数字から始まって、0に終わる形にしたいです。
今のところは while
分を使って、あまりうまく行かないときもあります。
なんか提案などがある人はよろしくお願いします。
Author And Source
この問題について(出力条件), 我々は、より多くの情報をここで見つけました https://qiita.com/jamarumori/items/74582275df014eeee0de著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .