편집 기록

편집 기록
  • 프로필 nowp님의 편집
    날짜2019.11.27

    두 리스트에 값 제거하기


    menu = 0
    words = ["data", "science", "happy", "smile", "lucky", "love", "dream", "yerterday", "today", "tommorrow"]
    means = ["자료", "과학", "행복", "미소", "행운", "사랑", "꿈", "어제", "오늘", "내일"]
    words_count=len(words)
    means_count=len(means)
    c=input("삭제하고 싶은 단어를 입력하시오:")
    

    c에서 쓴 words와 짝을 이루는 means값을 삭제 할려면 어떤 코드를 이용해야 하나요?

  • 프로필 알 수 없는 사용자님의 편집
    날짜2019.11.27

    두 리스트에 값 제거하기


    menu = 0 words = ["data", "science", "happy", "smile", "lucky", "love", "dream", "yerterday", "today", "tommorrow"] means = ["자료", "과학", "행복", "미소", "행운", "사랑", "꿈", "어제", "오늘", "내일"] words_count=len(words) means_count=len(means) c=input("삭제하고 싶은 단어를 입력하시오:") c에서 쓴 words와 짝을 이루는 means값을 삭제 할려면 어떤 코드를 이용해야 하나요?