channel_total_list = []
get_channel_entry = int(raw_input('How many channels do you want to delete? '))
if get_channel_entry > 0:
while True:
user_channel_number = int(re.sub('\D', '', raw_input("Enter a channel number, (3d): "))[:3]);
channel_total_list.append(user_channel_number)
get_channel_entry = get_channel_entry - 1
print channel_total_list
사용자 입력에서 채널 번호를 얻으려고합니다. 두 번째 동일한 번호를 입력하면 사용자에게 다른 번호를 입력하라고합니다.사용자가 다른 숫자를 입력하도록하십시오.
어떻게하면됩니까?