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

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

  • 분류 전체보기 (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 피드
로그인
로그아웃 글쓰기 관리

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

컨텐츠 검색

태그

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

최근글

댓글

공지사항

아카이브

Python(45)

  • day 5-4 for 반복문 과 range()

    반복문 안에서 range() 함수 ## range # For Loop with Range for number in range(1,10): ## 이러면 9 까지 print(number) for number in range(1,11): ## 이러면 10 까지 print(number) total = 0 for number in range(1,101): total += number print(total)

    2023.02.27
  • day 5-3 python 높은점수 구하기

    리스트 내부에서 높은 점수를 찾아 출력하기 단 max() 함수를 쓰지 않고 출력할 것 Instructions You are going to write a program that calculates the highest score from a List of scores. e.g. student_scores = [78, 65, 89, 86, 55, 91, 64, 89] Important you are not allowed to use the max or min functions. The output words must match the example. i.e The highest score in the class is: x Example Input 78 65 89 86 55 91 64 89 In this c..

    2023.02.27
  • 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
이전
1 2 3 4 5 6 ··· 8
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바