SuperHumanfreshers-dev.hashnode.dev·Dec 3, 2024Understanding if-else Statements and Conditional Operators in PythonDecision-making is a crucial part of programming. Python allows you to write code that makes decisions using if-else statements and conditional operators. In this article, we’ll dive into how these work and see examples to help you get started. What...DiscussBeginners Guide To Programmingif-else
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...Discussshell script
Leonardo Fiedlerblog.leonardofiedler.dev·Nov 4, 2024Usando Conditional Else em Loops em PythonEstava eu lendo o livro CPython Internals e depois de dar uma bisbilhotada na sintaxe da linguagem Python, eis que encontro algo assim no arquivo Grammar/Grammar (Branch correspondente a versão 3.9): while_stmt: 'while' namedexpr_test ':' suite ['els...DiscussPython
Kelvin Ugwutechcomm.hashnode.dev·Oct 19, 2024How to use conditional statements(if, elif, and else) in python.Table of Contents: Introduction Overview of Python's versatility and simplicity in programming. Basic Conditional Statements Explanation of if statements and their usage. Introduction to executing code based on conditions (if). The else Stat...Discuss·1 likeConditional statement in python
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...DiscussLinuxLinux
Arnav Singhpythonfornoobs.hashnode.dev·Oct 8, 2024Control Flow in Python: If Statements, Loops, and MoreWhen writing code, you'll often need to make decisions and control how the program flows based on different conditions. This is known as control flow, and Python offers various ways to implement it. In this article, we’ll explore Python's control flo...Discuss·10 likesPython for Noobscontrol flow
Dristanta Silwaldristantasilwal.hashnode.dev·Oct 3, 2024Grammars in Programming LanguageWhen we write code, we follow rules of syntax—how the code should look. But there's more to it than just getting the syntax right. The way the code is structured directly affects what it means and how it behaves. This intersection of syntax and seman...DiscussProgramming Blogs
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...DiscussJava
Kandadi Manasakandadimanasa.hashnode.dev·Sep 8, 2024Conditional Statements in JavaConditional statements allow your code to make decisions based on certain conditions. The most common conditional statements in Java are if, if-else, and switch. Akali vestundi, if(Opika unte) cook maggi else { paduko } , oka decision thiskovadaniki ...DiscussJava
Vibhuti Jainvibhutijain.hashnode.dev·Aug 17, 2024Day 4 Task: Basic Linux Shell Scripting for DevOps EngineersWhat is kernel The kernel is a computer program at the core of a computer’s operating system that manages operations of computer and hardware. What is shell scripting Shell scripting is a series of Linux commands written in a file in sequence. It is ...Discuss·1 like·51 readsLinux