How to write a website in Python without using frameworks? [closed]
📁 вопрос, ии
📁 вопрос, ии
Want to improve this question? so that it can be answered with facts and citations.
Closed 9 years ago.
A question arose: how are websites written in Python? I've read almost half of the textbook, use the built-in interpreter on Linux, but still can't understand how to use Python to create a website.
I forgot to mention that I would like to do without frameworks (i.e., write my own). I couldn't find any information on the internet.
If you pay attention to the cubes of numbers that end in 4 and 9, you can see a pattern - if a number ends in 4 or 9, then the cube of that number will also end in the same digit:
In [81]: [(i, i**3) for i in range(70) if (i**3) % 10 in (4,9)]Out[81]: [(4, 64), (9, 729), (14, 2744), (19 Log in to leave an answer