0
그래, 주어진 숫자를 찾을 때까지 숫자를 취한 다음 난수를 거치는 프로그램을 만들려고합니다. 지금까지 내 코드입니다 :파이썬 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''로해야합니까? 여기에는 무작위가 없습니다. 어쨌든'length'를'int'로 변환하고 적절한 연산자를 사용하면 코드가 작동합니다 :'zero = '0'* int (length)' – DeepSpace
[Python에서, n 문자 한 줄에?] (https://stackoverflow.com/questions/1424005/in-python-how-do-i-create-a-string-of-n-characters-in-one-line-of -암호) – quamrana