Amulyaawscloudbasics.hashnode.dev·Dec 10, 2024Mastering Loops in Python: A DevOps Engineer's GuideIntroduction In the world of programming, loops are a fundamental concept that allows repetitive execution of code blocks. In this article, we'll dive deep into Python loops, exploring their syntax, types, and practical DevOps use cases. What are Loo...pythonloops in python
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 9, 2024the World of Control Structures! 🎢the World of Control Structures! 🎢 "Life is all about the choices we make and path we follow." Same goes for the code as well. Control Structures Let's explore how code can make decisions. Control structures are the building blocks that dictate the ...learncsharp
Ankita Lunawatcloudhub2295.hashnode.dev·Nov 30, 2024Let's Dive into Shell Scripting!A shell script is a computer program intended to run by a Unix-like shell, which is a command-line interpreter; it is essentially a text file containing a series of commands that the shell interprets and executes. Why Use Shell Scripts? Shell scripts...shell script
Dinesh Kumar Kblog.dineshcloud.in·Oct 13, 2024Control Structures in Shell ScriptingControl structures are essential components of shell scripting that allow you to control the flow of execution based on certain conditions or to repeat tasks. This blog post will explore conditional statements, loops, and case statements, providing y...LinuxLinux
Arnav Singhpythonfornoobs.hashnode.dev·Oct 9, 2024Mastering Python Loops: For, While & Nested Loops ExplainedWhat will you learn? ConceptSummary For LoopRepeats a block of code a specific number of times using a sequence. While LoopContinues running a block of code as long as a condition remains true. Nested LoopsA loop inside another loop, useful ...10 likesPython for Noobswhile loop python
Akash Dasakashdas7781.hashnode.dev·Sep 11, 2024Introduction to Data Types, Variables, and Control Statements in Java :Java is one of the most popular programming languages, known for its simplicity and robustness. Whether you’re a beginner or an expert, understanding the fundamentals like data types, variables, and control statements is essential to writing efficien...Java
Kandadi Manasakandadimanasa.hashnode.dev·Sep 8, 2024Loops in JavaLoops are used to repeatedly execute a block of code as long as a specified condition is true. Adaina pani manam repeated ga cheyali ankuna dani loop use cheskoni chestham. Example: thinadam, padukovadam Java loops 4 types, e article lo 3 basic types...2 likesLoops
Yagya Goelyagyagoel1.hashnode.dev·Sep 8, 2024Week 1: Golang doesn't have While loopThis week, I learned about array slices, maps, structs (classes in Golang), if-else statements, switch-case, loops, functions, methods, and the defer keyword. Golang is a pretty interesting language with its opinionated syntax that keeps the code lo...1 likeGo Language
Alissa Lozhkinalissalozhkin.hashnode.dev·Aug 19, 2024For/While Loops in GoIn addition to conditionals, loops are fundamental constructs that can be used to control the flow of a program. In this post, I will go over how to create and use both for loops and while loops. For loops are used in two cases: either we want to exe...for-each-loop
QazneticforQazneticqaznetic.hashnode.dev·Jul 18, 2024Panduan Lengkap Memahami While dan Do-While Loops di DartDalam pemrograman, perulangan sangat penting untuk melakukan tugas yang berulang. Selain for loop, Dart menyediakan while dan do-while loop sebagai metode lain untuk melakukan perulangan. Artikel ini akan membahas secara lengkap tentang kedua jenis p...Dart FundamentalsLoops