태지쌤

로봇 & 코딩교육 No.1 크리에이터

파이썬/exercise 26

5-1. python 학생 평균키 구하기(for반복문 연습)

for반복문 연습을 위한 것이므로 sum, len 함수 사용하지 않고 문제해결하기 # 🚨 Don't change the code below 👇 student_heights = input("Input a list of student heights ").split() for n in range(0, len(student_heights)): student_heights[n] = int(student_heights[n]) # 🚨 Don't change the code above 👆 #Write your code below this row 👇 i = 0 sum = 0 for height in student_heights: sum += height i += 1 avg = round(sum / i) print(avg)

파이썬/exercise 2023.01.04

4-2. python nested list 보물지도

# 🚨 Don't change the code below 👇 row1 = ["⬜️","⬜️","⬜️"] row2 = ["⬜️","⬜️","⬜️"] row3 = ["⬜️","⬜️","⬜️"] map = [row1, row2, row3] print(f"{row1}\n{row2}\n{row3}") position = input("Where do you want to put the treasure? ") # 🚨 Don't change the code above 👆 #Write your code below this row 👇 position_int = int(position) column = position_int // 10 row = position_int % 10 map[row-1][column-1] = "X..

파이썬/exercise 2023.01.03

4-1. python random module, 동전 앞 뒤 무작위

import random # 정수 난수 생성(이상, 이하) integer = random.randint(0,3) print(integer) # 부동소수점 난수 생성(1 포함하지 않음) 0 - 1 float = random.random() print(float) # 0~5사이의 부동소수점 만들기 0 - 5 float2 = random.random() * 5 print(float2) love_score = random.randint(1,100) print(f"Your love score is {love_score}") import random coin = random.randint(0,1) if coin == 1: print("heads") else: print("tails") 음식값 누구 계산할까? # S..

파이썬/exercise 2023.01.03
반응형