BRI Announces IDR 135/Share Interim Dividend

BRI Announces IDR 135/Share Interim Dividend

BRI announced plans to distribute interim dividends for the 2024 financial year, totaling IDR 20.4 trillion or IDR 135 per share. The decision, made following a board of directors’ meeting and approval from the company’s board of commissioners, reflects BRI’s strong financial performance.

“Based on the financial report ending on September 30,2024,the company will distribute an interim dividend for the 2024 financial year of IDR 135 per share,” BRI directors stated in an details disclosure on Monday,december 16,2024.

The decision to distribute dividends is supported by the company’s robust financial performance, with net profit attributable to the parent entity reaching IDR 45.06 trillion as of September 30, 2024.

Timetable

Editor: Theresa Sandra Desfika ([email protected])

Can You Partially Apply the Second Argument of a Python function?

You might be wondering if you can partially apply just the second argument of a Python function. the short answer is: it depends.You can achieve this if the function accepts keyword arguments. A helpful example can be found on Stack Overflow: [https://stackoverflow.com/questions/11173660/can-one-partially-apply-the-second-argument-of-a-function-that-takes-no-keyword](https://stackoverflow.com/questions/11173660/can-one-partially-apply-the-second-argument-of-a-function-that-takes-no-keyword). This post demonstrates how using the ‘partial’ function from the ‘functools’ module can be effective for setting specific arguments in advance. However, if your function only accepts positional arguments, directly partially applying the second one isn’t possible. You’d need to restructure your function to use keyword arguments. Have a specific function in mind? I can definitely help you with a more tailored example!
Please provide the query so I can write a comprehensive reply using the given web search results.

Leave a Replay