이게 인풋파일이고(text.inp)
4
There are two issues here One is about taking the trouble to identify correctly the gender that people are presenting in public there waiters are failing there take up the cues to your gender identity
이게 코드인데요
f = open('text.inp','r').read()
f = f.lower()
wordlist = f.split()
print wordlist
k = wordlist[0]
k = int(k)
for word in wordlist :
if len(word)<k:
wordlist.remove(word)
print wordlist
인풋파일이 맨첫줄에 숫자가있고
그 숫자 이상인 단어들만 list에 남게 하고싶은데
이렇게하면 단어의 일부만 제거되더라구요 어떻게 고쳐야할까요??