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 SinghforPython for Noobspythonfornoobs.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
Anas Ansariilahianas.hashnode.dev·Aug 12, 2024📚 Mastering Shell Scripting: Control Commands for BeginnersControl Commands: if control statement: To use multiple conditions in one if-else block, the elif keyword is used in shell. If expression1 is true, it executes statement 1 and 2, and this process continues. If none of the conditions are true, it proc...Discuss·1 likecontrol commands
CODE SENSEIcodesensei.hashnode.dev·Jul 16, 2024How to Use Conditionalsconditions are crucial concepts in programming as they help us save lines of code and manage memory efficiently. CONDITIONALS As the name suggests, conditionals are used to set rules and make decisions based on circumstances. For example, when drivin...DiscussConditional statement