Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do different symbols mean in google-colab auto autocomplete?

Google-Colab has auto autocomplete, but what do the little symbols mean at the left, and how many different symbols are there?

like image 631
apostofes Avatar asked Aug 14 '19 21:08

apostofes


People also ask

How do I see suggestions on Google Colab?

Yup. Press control space (or command space, on a Mac) and autocomplete suggestions will appear.

How do I read dataset in Google Colab?

1) From Github (Files < 25MB)Click on the dataset in your repository, then click on View Raw. Copy the link to the raw dataset and store it as a string variable called url in Colab as shown below (a cleaner method but it's not necessary). The last step is to load the url into Pandas read_csv to get the dataframe.

How do I enter codes in Google Colab?

Code cells Click the Play icon in the left gutter of the cell; Type Cmd/Ctrl+Enter to run the cell in place; Type Shift+Enter to run the cell and move focus to the next cell (adding one if none exists); or. Type Alt+Enter to run the cell and insert a new code cell immediately below it.


1 Answers

For clarity, here is an example of the little symbols:

Example of completion icons

The icons distinguish the type of the completion, e.g., functions, modules, properties, and so on. Here's a decoder ring:

Icons to completion type

like image 148
Bob Smith Avatar answered Nov 15 '22 10:11

Bob Smith