YRYogesh Rajputinyogesheon.hashnode.dev·Sep 8, 2024 · 3 min readStreamline Your Workflow: Automate Backup and Recovery with AWS and KubernetesProject: Automate Backup and Recovery Process Step 1: Create an AWS Account and Set up AWS Backup Go to the AWS website and create an account if you don't already have one. Log in to the AWS Management Console and navigate to the AWS Backup dashboa...00
YRYogesh Rajputinyogesheon.hashnode.dev·Sep 3, 2024 · 5 min readMastering Python : Day 7Here are examples of each of the string methods in Python: 1. capitalize() Converts the first character to upper case s = "hello world" print(s.capitalize()) # Output: "Hello world" 2. casefold() Converts string into lower case s = "HELLO WORLD" pr...00
YRYogesh Rajputinyogesheon.hashnode.dev·Aug 31, 2024 · 3 min readMastering Python : Day 6If-Else-Elif Statements in Python In Python, if-else-elif statements are used to control the flow of a program based on conditions. Here's a breakdown of how they work: If Statement The if statement is used to execute a block of code if a certain con...00
YRYogesh Rajputinyogesheon.hashnode.dev·Aug 31, 2024 · 6 min readMastering Python : Day 5Strings in Python In Python, a string is a sequence of characters enclosed in quotes (single, double, or triple quotes). Strings are immutable, meaning they cannot be changed after creation. String Methods in Python Python provides a wide range of me...00
YRYogesh Rajputinyogesheon.hashnode.dev·Aug 28, 2024 · 3 min readMastering Python: Day 4python global variable In Python, a global variable is a variable that is defined outside of a function and is accessible from within any function. Here's an example: VerifyOpen In EditorEditCopy code1x = 5 # global variable 2 3def my_function(): 4 ...00