diff options
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ selected_coins = input("enter the coin you want to view: ").lower() btc_price = price(selected_coins) for coin, price in btc_price.items(): - print(f"{price}") + print(f"{coin.capitalize()}: ${price}") def email(btc): # change the email address or create a email.txt file and put your email there |