Вызов случайной величины из множества переменных один раз PYTHON - PullRequest
0 голосов
/ 03 декабря 2018

Здравствуйте, я сейчас собираюсь узнать, как вы можете вызывать случайную переменную несколько раз, но эти переменные не удваиваются.

Логика, которую я получил на данный момент, выглядит следующим образом:

get a len of the array the variables are stored in, random.randint(1, len(the_aray))

then print a variables place in the array and question for running it again

if yes, store previous result of random.randint then 

if random.randint in previous_results_board, go again..

if not, print the result out

for len var_array = len previous_results_board print 

"this is the end of this program" and wait for input, 

after typing/pressing whatever the script terminates.

Есть ли еще «оптимизированная» версия этого?и если нет, то как мне решить проблему хранения предыдущих результатов в массиве?

...