yangheng's picture
init
9842c28
raw history blame
No virus
114 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False