2 Respostas
+ 7
**random** is a module imported to add some functionality to a program.
**randint** is a function inside **random**. This function will generate a random integer between specified numbers(argument1 and argument2)
**random.randint(argument1, argument2)** — is just a way of calling that function
+ 1
@ Lamron thanks for the explanation, now I understand it better.