小编Uli*_*vez的帖子

如何打印两次相同的随机数?

我尝试制作一个代码,在文本中打印两个相等的随机值。

import random
archivo=open('Ejercicio3.txt', 'w')
up=0
insert=int(input('Valor: '))
for i in range(insert):
    up+=1
    n1=random.randint(10, 100)
    n2=random.randint(10, 100)
    archivo.write(f'{up}.-    {n1} - {n2} = {n1-n2}\n\n')

    print(f'{up}.-    {n1} - {n2} = {n1-n2}')
    archivo.write(f'{n1-n2}\n')#This is the problem, because the code write numbers different random

archivo.close()
Run Code Online (Sandbox Code Playgroud)

我想要的是它做类似的事情:

import random
archivo=open('Ejercicio1.1.txt', 'w')
up=0
insert=int(input('Valor: '))
for i in range(insert):
    up+=1
    n1=random.randint(10, 100)
    n2=random.randint(10, 100)

    archivo.write(f'{n1} - {n2} =''\n\n')

up=0
archivo.write('---------------------------------------------\n')
for i in range(insert):
    up+=1
    n1=random.randint(10, 100)
    n2=random.randint(10, 100)
    archivo.write(f'{n1-n2}''\n\n')#Except this part, I want it to …
Run Code Online (Sandbox Code Playgroud)

python windows random math console

-1
推荐指数
1
解决办法
73
查看次数

标签 统计

console ×1

math ×1

python ×1

random ×1

windows ×1