I was going through part of a multi line comment as shown below:
def __init__(self):
    """
    Connect to Nexus 7
    RFCOMM port: 4
    Nexus 7 MAC address: 08:60:6E:A5:82:C8
    """
If I am not mistaken this is a multi line comment but for some reason Python uses the multi-line comment to establish the connection. Which makes me curious was to why it happens?
 
    