-----Please generate a random float where the value is between 10 and 100 using Python math module. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

-----Please generate a random float where the value is between 10 and 100 using Python math module.

30th Apr 2019, 1:13 AM
Yubraj Jung Thapa
Yubraj Jung Thapa - avatar
2 Answers
+ 3
Coding challenge or coding homework? ๐Ÿคจ
30th Apr 2019, 2:59 AM
Decimis โ€  ๐•ฏ๐–Š๐–ˆ๐–Ž๐–’๐–Ž๐–˜
Decimis โ€  ๐•ฏ๐–Š๐–ˆ๐–Ž๐–’๐–Ž๐–˜ - avatar
+ 1
import random var1 = random.uniform(100,10) https://docs.python.org/3/library/random.html
30th Apr 2019, 1:30 AM
Gordon
Gordon - avatar