코딩을 한단계씩 부셔보자.

코딩을 한단계씩 부셔보자.

  • 분류 전체보기 (319)
    • 코딩배움일지 (157)
      • JAVA (79)
      • DataBase (29)
      • Web 구현 (34)
      • 인터페이스 구현 (15)
    • 개인적인 공부 (142)
      • 자바 (6)
      • 백준 (47)
      • Java의 정석 (0)
      • 그냥정리 (2)
      • Database 복습 (5)
      • 테스트 페이지 (1)
      • 프론트엔드 (7)
      • Unity (29)
      • Python (45)
    • TeamProjectHappy (12)
      • front (9)
      • database (3)
    • 개발일지 (2)
      • Journey to West (2)
  • 홈
  • 배움기록
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

코딩을 한단계씩 부셔보자.

컨텐츠 검색

태그

백준 유니티 2D 자바 왕초보 배열 SQL 자바기초 Web javascript html c# CSS java javabasic database Python 파이썬 java기초 unity

최근글

댓글

공지사항

아카이브

전체 글(319)

  • day 5-2 python (평균 키 구하기)

    Instructions You are going to write a program that calculates the average student height from a List of heights. e.g. student_heights = [180, 124, 165, 173, 189, 169, 146] The average height can be calculated by adding all the heights together and dividing by the total number of heights. e.g. 180 + 124 + 165 + 173 + 189 + 169 + 146 = 1146 There are a total of 7 heights in student_heights 1146 ÷ ..

    2023.02.27
  • day 5-1 for 반복문

    fruits =["사과","바나나","딸기","배","복숭아"] for fruit in fruits : print(fruit + " 파이")

    2023.02.25
  • day 4-7 python (가위 바위 보)

    가위 바위 보 ## 가위 바위 보 import random rock = ''' _______ ---' ____) (_____) (_____) (____) ---.__(___) ''' paper = ''' _______ ---' ____)____ ______) _______) _______) ---.__________) ''' scissors = ''' _______ ---' ____)____ ______) __________) (____) ---.__(___) ''' choice = int(input("가위 바위 보 게임을 시작합니다. (숫자를 입력해주세요) : 0.바위 1.가위, 2.보 \n 당신의 선택은??: ")) if choice == 0 : print("당신의 선택은 : " + rock) eli..

    2023.02.24
  • day 4-6 python (지도 만들기?)

    Instructions You are going to write a program that will mark a spot with an X. In the starting code, you will find a variable called map. This map contains a nested list. When map is printed this is what the nested list looks like: [['⬜️', '⬜️', '⬜️'],['⬜️', '⬜️', '⬜️'],['⬜️', '⬜️', '⬜️']] This is a bit hard to work with. So on lines 6 and 23, we've used this line of code print(f"{row1}\n{row2}\..

    2023.02.24
  • day 4-5 python indexError 및 중첩리스트

    ##---- index Error 중첩리스트 province_of_korea = ["경상남도","경상북도","전라남도","전라북도","제주특별자치도","강원도","충청남도","충청북도","경기도"] metropolitan_korea =["부산광역시","대구광역시","광주광역시","울산광역시","통합창원시","대전광역시","세종특별자치시","수원특례시","고양특례시","용인특례시"] print(len(province_of_korea)) print(len(metropolitan_korea)) 배열 9번째, 10번째 출력하라고 하면? print(province_of_korea[9]) print(metropolitan_korea[10]) 경기도 항목 뒤에는 아무것도 없기 때문에 Error 가 발생 중첩 리스트 ..

    2023.02.24
  • 랜덤 복습

    1 # 임의의 개수로 이름을 넣고 무작위 로 하나의 결과를 보여주기 import random #이름 작성 names_stirng = input("이름을 작성해주세요, 쉼표와 띄어쓰기를 합시다. : ") names = names_stirng.split(", ") ## 스플릿 지정 # 랜덤 결과 보여주기 names_item = len(names) #문자열의 개수 print(names_item) 2 # 임의의 개수로 이름을 넣고 무작위 로 하나의 결과를 보여주기 import random #이름 작성 names_stirng = input("이름을 작성해주세요, 쉼표와 띄어쓰기를 합시다. : ") names = names_stirng.split(", ") ## 스플릿 지정 # 랜덤 결과 보여주기 names_ite..

    2023.02.24
이전
1 ··· 4 5 6 7 8 9 10 ··· 54
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바