Go + Python = ❤️
Calling go from python ...
Calling go from python ...
Introspection in python is very interesting and it can help debug in various situation. Introspecting type information. We can use type function to check the type of python object. In the example below we assign 7 to variable val. And as we see type of val is class int. We can further check what is the type of int and surprise surprise it is of class type. val = 7 print(type(val)) print(type(int)) <class 'int'> <class 'type'> We can do a similar introspection with a class object....
Decorator can be intimidating at first and if you have passed that phase then it might be difficult to find the proper use case, here I will try to cover the basics of decorator and end with some use cases that might be useful. ...
In this post, I will use a python generator to count the word frequency from a big text file and try to use as little memory as possible. ...