+ 2
Can I use html or css in python programming ?? If not why ?
3 Answers
+ 13
Yes, there are Python-based web frameworks and libraries like Django, Flask or Bottle. You can build webpages with them and use Python inside.
+ 4
Python itself does not, but all web pages are build on three essential technologies that you MUST learn to do front-end web development. Not must as in I think they are the best technologies, but must as in âthereâs no other choice.â
HTML defines the content of a web page
CSS defines the styling and presentation of that content
JavaScript defines the behavior of a web site.
Python can be used on the backend, usually with a framework like Django.Â
Along with Python, youâd need to use something like SQL for a database.
Add all those up and youâve got a development stack that can handle just about anything.
After that, you can choose a back end language and framework. Either Python, Rails, Node, maybe .Net⊠whatever seems best to you at that time.
+ 1
but if I use my notepad ....what will the format of file
.py or .html ????