Python in One Hour. Part 1
Short Python tutorial for people familiar with programming
How to implement string interpolation in Python
String interpolation is a process of substituting values of local variables into placeholders in a string. It is implemented in many programming languages such as Scala: //Scala 2.10+ var name = "John"; println(s"My name is $name") >>> My name is...
Git Productivity Tip
git provides an efficient shortcut to refer to a previous branch: “-”. It can be used to switch to a previous branch quickly or to merge current branch.