Laplacian

a minimalist Jekyll theme

What is a Bite?

A bite is a short article. Some might say, it’s bite-sized. As an example, this is how you would define a class in Python 2 and Python 3 respectively.

# Python 2
class MyClass(object):
    def __init__(self, data):
        self.data = data
# Python 3
class MyClass:
    def __init__(self, data):
        self.data = data