Ask a New Question
Search
import math import random seed
Question
Which line of code is needed for a game in which the player will try to guess a number that the computer has selected?
1 answer
asked by
thatonekidwhosleepsinthebackoftheclass
59 views
Which line of code is needed for a game in which the player will try to guess a number that the computer has selected?
(1 point)
1 answer
120 views
import math
import random seed = int(input("Enter game number: ")) random.seed(seed) rangeBottom = 1 rangeTop = 10 score = 0 for
1 answer
64 views
Which line of code is needed for a game in which the player will try to guess a number that the computer has selected?
(1 point)
1 answer
asked by
Purple
136 views
Question
What statement must occur before this line of code? numpy.average(scores) (1 point) Responses import numpy import numpy
1 answer
asked by
jeff
63 views
import java.awt.EventQueue;
import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.SwingConstants; import
1 answer
asked by
OJ
167 views
can you add different weapons that you can earn in this game:laser gun, mini gun ,rocket lancher ,blackhole spawner
```python
11 answers
47 views
Maria is creating a game that will need a random number. Which line of code should be included in this program?
(1 point)
1 answer
213 views
What statement must occur before this line of code?
numpy.average(scores) (1 point) Responses import numpy import numpy import
1 answer
112 views
Which of these lines of code will generate a random number between 1 and 50?
(1 point) Responses input(“1-50”)
1 answer
123 views