raw_input() 에 아무것도 안넣고 raw_input() 위에서 print 문을 통해 미리 출력 시키는게 어떤가요? 예를들면..
from __future__ import print_function
print('Enter the coin you want to search : ', end='')
coin = raw_input()
위처럼요!
raw_input() 에 아무것도 안넣고 raw_input() 위에서 print 문을 통해 미리 출력 시키는게 어떤가요? 예를들면..
from __future__ import print_function
print('Enter the coin you want to search : ', end='')
coin = raw_input()
위처럼요!