From f52996cbf36fd69fb6d2cc625834bd7e5983edf4 Mon Sep 17 00:00:00 2001 From: Vesna Trifunoska Date: Sun, 27 Oct 2019 19:10:15 +0100 Subject: [PATCH] Added instagram to main.py. Added myself to contributors list --- hacktoberfest.rb | 3 ++- main.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/hacktoberfest.rb b/hacktoberfest.rb index 3a0ef92..90067e7 100644 --- a/hacktoberfest.rb +++ b/hacktoberfest.rb @@ -1,7 +1,8 @@ class Hacktoberfest @@participants_list = [ - "RyanJamesCaldwell" + "RyanJamesCaldwell", + "VesnaTrifunoska" ] def initialize diff --git a/main.py b/main.py index efbfb1d..d95d9d1 100644 --- a/main.py +++ b/main.py @@ -17,7 +17,7 @@ def main(): print('\n'.join(' ' * (10-x) + '*' * (x * 2 + 1) for x in range(10)) + '\n' + '\n'.join(' ' * 8 + '|' * 5 for x in range(4))) print("Let's get started!") - choice = int(input("Please choose from the following\n1. GitHub\n2. Facebook\n3. Twitter\n")) # Add more choices here + choice = int(input("Please choose from the following\n1. GitHub\n2. Facebook\n3. Twitter\n5. Instagram\n")) # Add more choices here if choice == 1: print("https://github.com") @@ -25,6 +25,8 @@ def main(): print("https://facebook.com") elif choice == 3: print("https://twitter.com/") + elif choice == 5: + print("https://instagram.com/")