File size: 114 Bytes
9842c28 |
1 2 3 4 5 6 7 8 |
def is_google_colab():
try:
import google.colab
return True
except:
return False
|
9842c28 |
1 2 3 4 5 6 7 8 |
def is_google_colab():
try:
import google.colab
return True
except:
return False
|