Telkom Completes R6.75 Billion Tower Sale

Telkom Completes R6.75 Billion Tower Sale

South African telecommunications ⁤giant Telkom has officially finalized the sale of 4,000 towers and masts for a‍ hefty R6.75 billion. This deal, which ⁢was initially announced earlier this⁤ year, has now received the final stamp of ‌approval from the Independent Communications ⁤Authority of South⁣ Africa (ICASA). [[1](https://news.google.com/rss/articles/CBMioAFBVV95cUxOczU4ZHBqekU1alNVM1BxUDZWUmgzZXZjaW1mUXBvZ2FXWUZ6cHhGa21zTXlUVDRXb1RDZHViSHVSU25QOUdYdzNxalBqa1ZQZ01TSHJoamV6OVBnZllyeVMxMHZTTi0weFZ6N3ZrS0ZKMXhzWk44elZtNFMxMTdrSXRLVHBmeVdHTXZ2dERfM2I0ZHdld2N1VGZvR2F1MlEt?oc=5)] The sale involves the transfer of these assets to a consortium comprised of Actis, ⁤a⁤ leading growth markets investor, and Royal ⁣Bafokeng Holdings, an investment ​company primarily ⁢focused on South Africa. Telkom, driven by a strategic⁣ move ⁣to streamline its operations ‌and focus on core buisness functions, initiated this divestment. [[2](https://news.google.com/rss/articles/CBMi-AFBVV95cUxNbko4ZFRfYjJDcEpsQndUbW9jVWUtMjB5ekwxdlkxSE9aSExUX01tMEJLTnRmTm5vTlJ2QWQyVXJhdXZrWEVZa29LRldXV0dyNHZOdDUzS3NCQ01QV01PSzhXcWNtTERVT280czNoYnZveHVIY1l4bU1tcGhkYWJ4RnhkdTBrdDJIVE9QTkJVN2Z1ZG5BbF94cThVV3EzcGFZY3g5NXF6Vko1LXJTLWdQb1g0MFA4WE96RjFhVXZ6eVltZ0dLOFlBOXBxSjRHUmcyX0NBRWVPMjh1d3JWV09Vb0phdmhSUEI3Q2IwQnFkQUV2SmhFSzNsaA?oc=5)] This transaction is a critically importent ⁤advancement in ‍the South African telecommunications landscape,highlighting Telkom’s ongoing efforts ‌to optimize its portfolio‍ and ‌adapt⁣ to‍ the ‍evolving ⁢industry dynamics. [[3](https://news.google.com/rss/articles/CBMisAFBVV95cUxOSVBtS0dxbDNhTkN3TURHSk9hLUtib3JSekExblNzSXE5WFg0NXNqZldIR0RreEFWblJRc2RiaExQS3BaVWpORXJTWVZ2MkdSdlhZZkM2SzJFZXhCQTFwRVZOc1d4TGRLemV2STNZV1Y3NEdwVzBXVUlJZ05nRTdRQkdZNUYzVUJoLVpWRjZ1ei1oM21UR0J1RXpuTkJoZ0NIZmNSbkRyQ056WVRwVXhxNw?oc=5)]
Please provide⁣ the ‍query so I can generate‌ a⁣ complete reply using the given web search results.


The error “TypeError: get() takes no keyword arguments” means you’re trying to use keyword arguments (like `key=”mykey”`) with the `get()` method of a dictionary, which doesn’t support them.



The `get()` method is designed to be simple and efficient for retrieving values from a dictionary. It takes one required argument:



* **key**: The key you want to look up in the dictionary.



It also accepts an optional argument:



* **default**: The value to return if the key is not found in the dictionary. If omitted, it defaults to `None`.



Here’s an example:



“`python

my_dict = {“name”: “Alice”, “age”: 30}



# Get the value for key “name”

name = my_dict.get(“name”) # Returns “Alice”



# Get the value for key “city” (which doesn’t exist)

city = my_dict.get(“city”) # Returns None



# Get the value for key “city” with a default value

city = my_dict.get(“city”, “Unknown”) # Returns “Unknown”

“`



instead of using keyword arguments, simply pass the key as the first argument to the `get()` method. [[1](https://stackoverflow.com/questions/24463202/typeerror-get-takes-no-keyword-arguments)]

Leave a Replay