[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-07-08。"],[[["`print()` displays the provided arguments, including Earth Engine objects and standard data types, in the console."],["In JavaScript, `print()` directly displays Earth Engine objects, while in Python, you typically need to use `getInfo()` or the `eerepr` library for proper visualization."],["The function accepts a variable number of arguments (`var_args`) representing the objects to be printed."],["Examples are provided demonstrating the usage of `print()` with various Earth Engine objects like `ee.Number`, `ee.Array`, `ee.ImageCollection`, and `ee.Image`."]]],["The `print` function displays objects to the console. It accepts `VarArgs` as input. In JavaScript, `print(var_args)` directly outputs the object's value. In Python, the built-in `print` displays the serialized request for Earth Engine objects. To print the object's value in Python, `.getInfo()` is needed, which synchronously retrieves the object from the server, as in `print(ee.Number(1).getInfo())`. Example cases are shown for numbers, arrays, and image collections.\n"]]