It's because get_ticker method gives you the 24 hour price change statistics.
Slow solution:
You can use get_kline and take the last close price.
Fast solution:
Use websocket-client package and subscribe to the aggregate trade stream which is real time
import websocket
import threading
import json
symbol = 'ETHUSDT'
def process_msg_stream(*args):
msg = json.loads(args[1])
print("Last price = ", str(msg['p']))
ws = websocket.WebSocketApp("".join(['wss://stream.binance.com:9443/ws/', symbol.lower(), '@aggTrade']), on_message=process_msg_stream)
threading.Thread(target=ws.run_forever, daemon=True).start()