Answer the question
In order to leave comments, you need to log in
I don't understand what is wrong?
import random
class r:
a=random.radiant(0,9)
b=random.radiant(0,9)
c=random.radiant(0,9)
class vvid:
l=input('Перше число')
p=input('Друге число')
z=input('Третє число')
class perevirka:
if r(a==l):
print('Ви вгадали перше число')
else:
print("перше число не вгадане")
if r(b==p):
print('Ви вгадали друге число')
else:
print('Друге число не вгадане')
if r(c==z):
print('Третє число вгадане')
else:
print('Третє чсло не вгадне')
<code>
Answer the question
In order to leave comments, you need to log in
And what is the point? Assignment to a variable in a class, you do not create class instances +
if r(c==z): - не видел никогда такого
print('Третє число вгадане')
I didn’t study the whole code, but I say right off the bat,
a = random.randint(0,9)
b = random.randint(0,9)
c = random.randint(0,9)
radiant there is no such) import random
a = random.randint(0,9)
b = random.randint(0,9)
c = random.randint(0,9)
l=input('Перше число: ')
p=input('Друге число: ')
z=input('Третє число: ')
if a == l:
print('Ви вгадали перше число')
else:
print("перше число не вгадане")
if b == p:
print('Ви вгадали друге число')
else:
print('Друге число не вгадане')
if c == z:
print('Третє число вгадане')
else:
print('Третє чсло не вгадне')
In general, there are a lot of mistakes and there are things that are not needed here.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question