태지쌤

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

자세히보기
반응형

전체 글 1795

8-1. python function - math ceil

def greet(): print("hi") print("hi") print("hi") greet() def greet_with_name(name): print(f"hi {name}") greet_with_name("TJ") 페인트 면적 구하기 파이썬에서 올림 구할 때 math에서 ceil #Write your code below this line 👇 import math def paint_calc(height, width, cover): result = math.ceil(height * width / cover) print(f"You'll need {result} cans of paint.") #Write your code above this line 👆 # Define a function called..

파이썬/exercise 2023.01.04
반응형