Hi,
I am new to programming and learning python.
I want to generate a list of random numbers and print them in a table of a specified number (say 10) columns. For example say fifty random numbers in a table of 10 columns and 5 rows
This is what I tried -
Awaiting suggestions from you people.
Regards,
Aditya Pratap V.
I am new to programming and learning python.
I want to generate a list of random numbers and print them in a table of a specified number (say 10) columns. For example say fifty random numbers in a table of 10 columns and 5 rows
This is what I tried -
import random
ran_dom = 0
def gen_ran():
ran_dom = round(random.random(), 5)
print(ran_dom, end="\t")
resp = int(input("How many randoms you want to generate :"))
for i in range(resp):
x = 0
for x in range(10):
gen_ran()
print("\r")If I want 50 randoms, the output is a table of 10 columns and 50 rows.Awaiting suggestions from you people.
Regards,
Aditya Pratap V.
