Identity Access Management (iam)IAM is one of the core concepts in AWS. It’s essential to understand when working with the cloud because it controls access to resources like S3 buckets, EC2 instances, DynamoDB, and many other AWS services. IAM is responsible for managing both authe...Nov 13, 2024·2 min read
Mastering Python FunctionsIntroduction In the world of programming, functions are indispensable. They allow us to encapsulate blocks of code, making it easier to organize, reuse, and maintain your codebase. Python, a versatile and widely used programming language, provides po...Sep 19, 2023·8 min read
String in Python - 2Immutability of Strings Strings are a fundamental data type in Python, serving as a sequence of characters. However, one key property of strings is their immutability. This means that once a string is created, its individual characters cannot be chan...Aug 23, 2023·3 min read
String in Python - 1In Python, a string is a sequence of characters enclosed within either single ('') or double ("") quotation marks. It's a fundamental data type used to represent textual data. Strings can contain letters, numbers, symbols, and even spaces. // How str...Aug 18, 2023·2 min read
Introduction of the JourneyWelcome to my blog, where the worlds of Python programming and MLOps collide! If you're passionate about diving deep into the realms of coding and the intricacies of Machine Learning Operations (MLOps), you've come to the right place. Embark on a jou...Aug 18, 2023·2 min read
Python Data TypesIn Python, data types determine the type of data that a variable can hold. Different data types have different purposes. Here I am going to write some types of data type Integer (int) Integers are whole numbers without decimal points. Examples: age =...Aug 7, 2023·2 min read