asked 181k views
3 votes
URGENTTTTTTTTTTTT

You want to find a random decimal between 0 and 1, with 0 included. Choose the correct lines of code, in the order they should appear in IDLE. Sample Output: 0.3570702149467504
>>>_________
>>>_________

from math import *
randint(0,1)
from random import *
random( )​

1 Answer

1 vote

Answer:

from random import *

print(random())

Step-by-step explanation:

You can try this in any online python ide quicker than putting the question here!

answered
User Awongh
by
7.9k points

Related questions

asked Apr 26, 2022 36.7k views
DiscoveryOV asked Apr 26, 2022
by DiscoveryOV
8.1k points
1 answer
18 votes
36.7k views