Skip to content

Software tools and Terminology

  • Python
  • Cyber Security Basics
  • AI Terminology
Software tools and Terminology
  • Python

    Object: Methods and properties

    Byadmin September 21, 2025September 21, 2025

    πŸš— Car Properties βš™οΈ Car Methods πŸš— Car Properties Properties are the nouns that describe a car. They are the characteristics or attributes that define a specific car’s state. Think of them as the data associated with a car object. Examples: βš™οΈ Car Methods Methods are the verbs that describe what a car can do….

    Read More Object: Methods and propertiesContinue

  • Python

    Object-Oriented Programming (OOP) in Python

    Byadmin September 21, 2025September 21, 2025

    OOP in Python is a programming paradigm that uses objects and classes to structure code. It’s a way of organizing code into reusable and logical blocks, making programs easier to manage, understand, and scale. Instead of focusing on functions, OOP focuses on data and the behavior associated with that data. Core Concepts of OOP 1….

    Read More Object-Oriented Programming (OOP) in PythonContinue

  • Python

    re Programs

    Byadmin September 19, 2025September 19, 2025

    The regular expression r’;\s*(.*?);’ is used to find and extract text that is located between two semicolons. In summary, this expression finds a semicolon, then non-greedily captures all characters up to the next semicolon. This is an effective way to extract the middle value from a semicolon-separated string. Title 1 to 25 chars The regular…

    Read More re ProgramsContinue

  • Python

    Negative lookbehind assertion

    Byadmin September 19, 2025September 19, 2025

    A negative lookbehind assertion in Python’s re module is a zero-width assertion that checks if a pattern is not present immediately before the current position. It is written as (?<!…). It’s the opposite of a positive lookbehind and allows you to exclude matches based on what precedes them. Similar to the positive lookbehind, the pattern…

    Read More Negative lookbehind assertionContinue

  • Python

    positive lookbehind assertion

    Byadmin September 19, 2025September 19, 2025

    A positive lookbehind assertion in Python’s re module is a zero-width assertion that checks if the pattern that precedes it is present, without including that pattern in the overall match. It’s the opposite of a lookahead. It is written as (?<=…). The key constraint for lookbehind assertions in Python is that the pattern inside the…

    Read More positive lookbehind assertionContinue

  • Python

    positive lookahead assertion

    Byadmin September 19, 2025September 19, 2025

    A positive lookahead assertion in Python’s re module is a zero-width assertion that checks if the pattern that follows it is present, without including that pattern in the overall match. It is written as (?=…). The key is that it’s a “lookahead”β€”the regex engine looks ahead in the string to see if the pattern inside…

    Read More positive lookahead assertionContinue

  • Python

    non-capturing group, Named Groups,groupdict()

    Byadmin September 19, 2025September 19, 2025

    To create a non-capturing group in Python’s re module, you use the syntax (?:…). This groups a part of a regular expression together without creating a backreference for that group. A capturing group (…) saves the matched text. You can then access this captured text using methods like group(1), group(2), etc. A non-capturing group (?:…)…

    Read More non-capturing group, Named Groups,groupdict()Continue

  • Python

    Special Sequences in Python Regex

    Byadmin September 17, 2025September 17, 2025

    1. \A and \Z – String Anchors \A – Matches ONLY at the beginning of the string \Z – Matches ONLY at the end of the string Example 1: \A – Start of string python import re text = “Hello World\nHello Python” pattern = r”\AHello” # Match “Hello” only at the VERY beginning matches =…

    Read More Special Sequences in Python RegexContinue

  • Python

    Curly Braces {} ,Pipe (|) Metacharacters

    Byadmin September 17, 2025September 17, 2025

    Curly Braces {} in Python Regex Curly braces {} are used to specify exact quantity of the preceding character or group. They define how many times something should appear. Basic Syntax: Example 1: Exact Number of Digits python import re text = “Zip codes: 12345, 9876, 123, 123456, 90210″ # Match exactly 5 digits pattern = r”\d{5}” # Exactly…

    Read More Curly Braces {} ,Pipe (|) MetacharactersContinue

  • Python

    (?),Greedy vs. Non-Greedy, Backslash () ,Square Brackets [] Metacharacters

    Byadmin September 16, 2025September 16, 2025

    The Question Mark (?) in Python Regex The question mark ? in Python’s regular expressions has two main uses: 1. Making a Character or Group Optional (0 or 1 occurrence) This is the most common use – it makes the preceding character or group optional. Examples: Example 1: Optional ‘s’ for plural words python import re pattern…

    Read More (?),Greedy vs. Non-Greedy, Backslash () ,Square Brackets [] MetacharactersContinue

Page navigation

Previous PagePrevious 1 … 5 6 7 8 9 … 21 Next PageNext

© 2026 Software tools and Terminology - WordPress Theme by Kadence WP

Scroll to top
  • Python
  • Cyber Security Basics
  • AI Terminology