[[["容易理解","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"]],["上次更新時間: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"]]