import pykorbit

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



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