Tag: python
-
Code Snippets: Python – The Magic Of The get() Method And Default Argument Unveiled
In this article, we will discover how to use Python get() method and how to give a default value, if the key is not present in the dictionary.
-
PrivateGPT on AWS: The New Era of LLMs Document Security
Introduction Since the introduction of the Large Language Models I have been intrigued to experiment with them and I was concerned about their potential introduction in the company’s documentation and information retrieval processes. The main concern is, of course to make sure that the internal data remains private and that does does not become part…
-
Code Snippets: Python – How to sort dictionary values
In this blog post, we will explore two methods to sort dictionary values, demonstrating their implementation and usage.
-
Code Snippets: Python – If statements with multiple conditions
Sometimes when writing a Python script we have to deal with if statements where multiple conditions need to verified at the same time.