From d9c4e90c4efdf3d9feecf72a15fb872ef7e92bae Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Fri, 8 Mar 2024 05:08:45 +0530 Subject: remove websocket --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index c520892..c9a6b93 100644 --- a/main.py +++ b/main.py @@ -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 -- cgit v1.2.3-59-g8ed1b