Nexnex.hashnode.dev·Apr 20, 2024The Great Tab vs Space Debate: Choosing the Right Indentation for Your CodeIf you’ve ever worked with other developers, you might have come across the great debate: tabs vs. spaces for code indentation. While this might seem like a trivial matter, it’s a topic that sparks passionate discussions among programmers. Let’s dive...Discusscoding
Faizan Anwarlogicodev.hashnode.dev·Nov 8, 2023Indentation - The Secret to Cleaner CodeIndentation Indentation is the use of spaces or tabs to organise code. Indentation may seem like a small detail, but it has a big impact on the readability and maintainability of your code. Why is Indentation Important? Readability: Indentati...Discussindentation
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Oct 19, 2023Python scriptsKeywords: Python has a set of reserved words called keywords which have special meanings. Python has a total of 33 keywords compared to around 50 keywords in Java. The Python keywords are: andassertclasscontinuebreakdefdelelifelseexceptfinallyforfrom...DiscussPython SyntaxKeywords
Taegu Kangktg0210.hashnode.dev·Aug 3, 2023did not find expected '-' indicatorsituation Error occurs when you are using docker-compose or yaml files. cause Indentation errorDiscussLinux
Shubham Sardablog.unwiredlearning.com·Jun 5, 2023IndentationIndentation refers to the spaces at the beginning of a code line. In other programming languages, the indentation in code is for readability only, the indentation in Python is very important. Python uses indentation to indicate a block of code. age =...Discuss·265 readsindentation
Sriram Bsriram23.hashnode.dev·Dec 24, 2022Indentation With Tab Key In ReactHello World! The "Tabulator key" commonly known as the "Tab" key has multiple purposes, depending on where it is being used. For example, if we hit the tab key in a spreadsheet, it would move the cursor one cell rightwards. If we hit it in a text edi...Discuss·178 readsReact
Sanjay Singh Rajpootsanjayrajpoot.hashnode.dev·Sep 24, 2022Why Indentation is more important than coding?As a beginner, I always thought that working of code is more important than how well it's indented. After write code for about a year now I realised how important it is to write good code. Good code here not only means indentation but how your code l...Discusscoding
Chidozie Mosesiamdoziemoses.hashnode.dev·Jul 5, 2022My Coding Journey Day 4Do you know you can manipulate the Google Chrome homepage by removing the google text as in the image below? Well, that’s what I learned. I got introduced to developer tools. The developer tools feature is used to inspect your code, most times you ...Discuss·3 likes·65 readsHTML5
Niall Harringtongetoutofthatgarden.hashnode.dev·Jun 16, 2022Python Practice, and trying not to feel old. Today I Learned: Wednesday 15 June 2022Still working through Codecademy's Python 2 course. while loops are similar to if statements. They will continue to loop while the condition is true. while/else loops will execute the else block once the loop condition evaluates to false. A trai...Discuss·157 readscodecademy