Starting April 29, 2025, Gemini 1.5 Pro and Gemini 1.5 Flash models are not available in projects that have no prior usage of these models, including new projects. For details, see Model versions and lifecycle.
Stay organized with collections
Save and categorize content based on your preferences.
Generate a Python function given its docstring
You can query a model directly and test the results returned when using
different parameter values with the Cloud console, or by calling the
Vertex AI API directly.
fromcollectionsimportnamedtuplefrommathimportsqrt# A point has an x and a y coordinatePoint=namedtuple('Point','x y')# A triangle is defined by three pointsTriangle=namedtuple('Triangle','a b c')defdistance(p,q):"""Returns the distance between the provided pair of points"""returnsqrt((p.x-q.x)**2+(p.y-q.y)**2)defperimeter(triangle):"""Returns the perimeter of the provided triangle"""returndistance(triangle.a,triangle.b)+distance(triangle.b,triangle.c)+distance(triangle.c,triangle.a)defarea(triangle):"""Returns the area of the provided triangle using Heron's formula"""
Write the body of the area function, following its docstring.
Response
fromcollectionsimportnamedtuplefrommathimportsqrt# A point has an x and a y coordinatePoint=namedtuple('Point','x y')# A triangle is defined by three pointsTriangle=namedtuple('Triangle','a b c')defdistance(p,q):"""Returns the distance between the provided pair of points"""returnsqrt((p.x-q.x)**2+(p.y-q.y)**2)defperimeter(triangle):"""Returns the perimeter of the provided triangle"""returndistance(triangle.a,triangle.b)+distance(triangle.b,triangle.c)+distance(triangle.c,triangle.a)defarea(triangle):"""Returns the area of the provided triangle using Heron's formula"""s=perimeter(triangle)/2returnsqrt(s*(s-distance(triangle.a,triangle.b))*(s-distance(triangle.b,triangle.c))*(s-distance(triangle.c,triangle.a)))
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-27 UTC."],[],[]]