I watched this awesome tutorial: Click here Today I have learnt about new things. Yes completely new Python codes which are not even available in Java or C++. After this I love Python more than before. I have learnt 3 things: 1. Position : Yesterday I studied about functions more and more and I have got to know about an issue. Let's imagine, I have function called printNames(name1,name2) Let's say name 1 should be Harry And name 2 should be Steve So, the function and python code will be, def printNames(name1,name2): print('Name 1 is: ', name1) print('Name 2 is: ', name2) printNames('Harry','Steve') Output: Name 1 is: Harry Name 2 is: Steve Here, if I suddenly put printNames('Steve', 'Harry') the output will be reversed as wel