# path.is_absolute ## Function Determine whether the path is an absolute path. ## Syntax ```bt path(text).is_absolute() ``` ## Parameters None. ## Return value | Type | Description | | ------ | ------ | | Bool | Returns true for absolute paths. | ## Code Example ```bt result = path('/var/log').is_absolute() // Output: true print result ``` ## Notes - The judgment rules follow the current operating system.