+ 2
Is It a Good Idea to Lear Two Languages at Once?
Im learning Python, and I decided to start HTML (since it is scripting, so not that hard). Is this a good idea? Or will it slow down my progress in python?
2 Answers
+ 9
Html is a markup language. No scripting there.
Markup Language:
Markup languages are designed for the processing, definition and presentation of text. The language specifies code for formatting, both the layout and style, within a text file. The code used to specify the formatting are called tags. Html is a an example of a widely known and used markup language.
Scripting Language:
A scripting or script language is a programming language that supports scripts: programs written for a special run-time environment that automate the execution of tasks that could alternatively be executed one-by-one by a human operator. Scripting languages are often interpreted (rather than compiled).
That aside I doubt Html will add confusion to your progress in learning Python.
+ 2
Oh, I thought it was scripting! Thanks for the info!