0
だから、数値をとり、与えられた数値が見つかるまで乱数を通すプログラムを作ろうとしています。これはこれまでの私のコードです:Python 3:数値を0の数値に転送しようとしています
import random
number=input("Enter any number: ") #takes input from user
length=len(number) #gets the length of the number
zero=("0"xlength) #is supposed to set the number of zero's to the number length. eg if the length is "4" it returns "0000"
私は自分自身を可変回数複製する方法を知りません。
何これは 'random'と関係があるのでしょうか?ここにはランダムなものは何もありません。 'zero = '0' * int(length)' – DeepSpace
重複している可能性があります[Pythonでは、nの文字列を作成するにはどうすればよいですか? 1行のコード内の文字?](https://stackoverflow.com/questions/1424005/in-python-how-do-i-create-a-string-of-n-characters-in-one-line-of -コード) – quamrana