File size: 113 Bytes
247b595
 
 
 
 
b5da431
1
2
3
4
5
6
7
def is_google_colab():
    try:
        import google.colab
        return True
    except:
        return False