In my website project, there is conflict right now on using python or scala. One argument that went against scala was its slow compile time whereas Python does not even compile. According to answers given in this question Why does IntelliJ IDEA compile Scala so slowly?
So my question is for a website, what's more important to consider. Slow compile time of a language or slow execution of a language. Is slow compile time of scala an affecting factor? AFAIK compiled code of scala will run faster than interpreted python code.
Note - It's right that languages do not scale but architecture and code does, but it will not hurt to use a language which runs fast.