inport files to google colab from github
!git clone git_hub_link
Here is what the above code is Doing:
1. We’re using the ! to tell Jupyter that we want to run a shell command.
2. We’re using git clone to tell git that we want to clone a repository.
3. We’re using git_hub_link to tell git where to find the repository.