Posts Tagged ‘php’

Python – String Interpolation

As I stated in my previous article, I’ve started a new Internship where the scripting language of choice is Python. The learning curve for this scripting language is very lean if you have in background at least one dynamic typed language (as Perl, PHP, etc.) and if not, you will be amazed how fast things can be done in one of these languages. Everything can be done very easy in Python, but I have to admit that the string interpolation part can suffer minor modification in order to improve it: Currently, you can either do string interpolation like in printf family style: name = [...] Read more