dimanche 21 février 2021

Fill Excel cells with random numbers

I have a question about how to fill some cells in Excels with random values? For example, I have a part of the code with:

numbers_random = (random.random() for _ in range(10))
worksheet.write('A1:J1', numbers_random)

Which gave me the error of: TypeError: Unsupported type <class 'generator'> in write()

How to fix it?




Aucun commentaire:

Enregistrer un commentaire