juancopi81's picture
Create YouTube Illustrated Summary
6249bc9
raw
history blame
No virus
112 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False