tubeCoding
Python
Java demo
한국어(ko)
English(en)
한국어(ko)
로그인
회원가입
새 파일
CSV 파일 추가
파일 이름
취소
파일 생성
코드 실행
해당 파일은 텍스트 편집기에서 표시할 수 없습니다.
콘솔 출력
[{"type":"TextFile","filename":"main.py","content":"# ----------------------------------------------------\n# 리스트 (친구 이름 관리 및 검색)\n# ---------------------------------------------------- \n\nfriends = [\"철수\", \"영희\", \"민수\", \"수진\"]\n\nprint(\"내 친구들:\", friends)\n\n# 친구 추가\nnew_friend = input(\"새로운 친구 이름을 입력하세요: \")\nfriends.append(new_friend)\nprint(\"친구 추가 후:\", friends)\n\n# 친구 검색\nsearch_name = input(\"찾고 싶은 친구 이름을 입력하세요: \")\nif search_name in friends:\n print(f\"{search_name}은(는) 친구 목록에 있습니다.\")\nelse:\n print(f\"{search_name}은(는) 친구 목록에 없습니다.\")\n\n# 친구 삭제 (예시)\n# friends.remove(\"철수\")\n# print(\"철수 삭제 후:\", friends)\n","locked":true}]