- 3
How to write a program that generates and prints 50 random integers,each between 3 and 6 in python
4 Respostas
+ 2
Your attempt??
+ 1
I will not provide you with code. But here is all you need to know👇
It is a straight forward implementation of randint() function.
Learn more about it here👇
https://www.geeksforgeeks.org/JUMP_LINK__&&__python__&&__JUMP_LINK-randint-function/
0
I got in a book and I'm just beginner and i don't get the question
- 1
a= [random.radint(3,7) for _ in range(50)]