├── README.md └── code /README.md: -------------------------------------------------------------------------------- 1 | # GitHub-Galactic -------------------------------------------------------------------------------- /code: -------------------------------------------------------------------------------- 1 | class GitHubGalactic: 2 | def __init__(self, repositories): 3 | self.repositories = repositories 4 | 5 | def explore(self): 6 | print("Exploring the GitHub Galactic...") 7 | for repo in self.repositories: 8 | print(f"Repository: {repo}") 9 | 10 | github_galactic = GitHubGalactic(["Repo1", "Repo2", "Repo3"]) 11 | github_galactic.explore() 12 | --------------------------------------------------------------------------------