import pykorbit

orderbook = pykorbit.get_orderbook("BTC")
asks = orderbook['asks']
for ask in asks:
print(ask[0], ask[1])


막 일케 여러줄 나와버리는데 이걸 어떻게 두세줄만 나오게 해요?