+ 3
How do you use Python to make websites?
3 Answers
+ 3
it is better if you use ready framework such as django or flask they are very good and easy to handle, so you don't need to write the whole code yourself :)
+ 1
Hi Benjamin,
Python is a general purpose language, so you can create any number of (smaller) server-side ("back-end") applications. You can use a Python-based static site generator (there are a whole bunch of them), learn the client-side ("front-end") stuff (HTML, CSS, JavaScript), or go full-on nerd and create your own static site generator based on the client-side stuff.
I hope this helps! :)