Study Code/[Basic] Python2024. 5. 19. 00:05[Python] 데이터와 변수 연습
width = float(input('가로 길이: '))height = float(input('세로 길이: '))triangle = width * height /2square = width * heightprint ('-' * 20)print('삼각형 넓이 : %f' % triangle)print('사각형 넓이 : %f' % square)print('삼각형 넓이 : %2f' % triangle)print('사각형 넓이 : %2f' % square)print ('-' * 20) import mathradius = float(input('반지름(cm) 입력 : '))circleArea = math.pi * radius ** 2circleLenth = 2 * math.pi * radiusprint('원의 넓..