How can I create a form of 3 columns in Django forms to receive data in views?

Good day! I need to place three columns in the data entry form. Like one Django form.
The form needs to enter information in several rows and several columns. How can I come up with this.
For example, I need to enter data in a form that is a bit like a table.
How can I come up with this form? In which there are 3 columns and several rows.
To enter data not in the classic form as usual, but in several types of information at once.
How can I create a form of 3 columns in Django forms to receive data in views?

I need to enter data similar to a Word Excel table.
Is there a way to do something similar?
There is too much different data and it needs to be changed.

You’ve got a couple different options here.

You could render the fields individually, within whatever framework you desire.

Or, you could use something like Django Crispy Forms with a custom layout object to help you do it. (That’s the package I use to do this sort of thing.)

Or, you could create your own form template to provide your own type of organization to the fields while still rendering the form.