Inezar | A place to share knowledge and grow your career Inezar | A place to share knowledge and grow your career
Результаты поиска
Все результаты
  • Вступить
    Войти
    Регистрация
    Поиск
    Ночной режим

Каталог

Expand your network, discover new opportunities, enhance your financial potential, and develop valuable skills for personal and professional growth.

  • Пользователи
  • Записей
  • Страницы
  • Группы
  • Мероприятия
  • Статьи пользователей
  • Marketplace
  • Funding
  • Offers
  • Jobs
  • Courses
  • Форумы
  • Кинозал
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:24:56 - Перевод
    Scripts, Modules, Math Module, and Escape Sequences in Python
    1. Scripts In Python, a script is a file containing Python code that is intended to be executed. Scripts are typically used to automate tasks or to execute a series of operations. Here is an example of a simple Python script: # my_script.py   # A simple Python script to print "Hello, World!"print("Hello, World!") To run this script, you would execute it from the command line: python...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:29:05 - Перевод
    String and List
    String A string is a data type, and string variables can hold sequences of text. A string literal is the actual string value used inside your python program. A programmer creates a string literal by surrounding text with single or double quotes. Ex: name = ‘Bob’, or  city = other_city, where other_city is a string variable. The string...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:35:59 - Перевод
    Tuple, Set, and Dictionary
    These are all fundamental data structures used to organize information in programming. Here's a breakdown of each: Tuple: Ordered collection of elements, similar to a list. Elements can be of different data types (strings, numbers, etc.). Immutable: Once created, you cannot change the elements within the tuple. Used for representing fixed data like coordinates (x, y) or product details...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:37:18 - Перевод
    Types Summary and Type Conversion
    Types summary The following is a summary of the different Python types: string - Sequence type: Used for text. list- Sequence type: A mutable container with ordered elements. tuple - Sequence type: An immutable container with ordered elements. set  - Set type: A mutable container with unordered and unique elements. dict – Mapping type: A container with...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:39:15 - Перевод
    F-String Formatting
    F-strings are a powerful and concise way to format strings in Python introduced in Python 3.6. They provide a way to embed expressions directly inside strings using curly braces {}. This makes code more readable and easier to maintain compared to other formatting methods. Here's a breakdown of how F-Strings work: Creating F-Strings: An f-string is prefixed with the letter f or F before the...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:42:09 - Перевод
    Branching Basics and Multi-Branch Statements in Python
    Branching is a fundamental concept in programming that allows your code to make decisions and execute different blocks of code based on certain conditions. In Python, we achieve branching using various statements, with the most common being: if statement else statement elif statement (else if) 1. if Statement The if statement is the core of branching. It checks a condition and executes...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Tebtalks Access
    добавлена новая статья Computer Programming
    2024-07-16 21:44:34 - Перевод
    Operators and Precedence Rules
    In Python, operators are special symbols that perform operations on operands (values or variables). Operator precedence determines the order in which these operations are evaluated within an expression. Understanding precedence is essential for writing correct and predictable code. Precedence Levels: Python follows the PEMDAS (or BODMAS) order of operations, just like basic math. Here's a...
    Like
    2
    1 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:47:48 - Перевод
    Comparing Data Types and Conditional Expressions
    Comparing Data Types: In Python, you can compare data types using the type() function. This function returns the data type of a variable or expression. Here's how it's used: Python x = 5 y = "hello" z = [1, 2, 3] print(type(x)) # Output: <class 'int'> (integer) print(type(y)) # Output: <class 'str'> (string) print(type(z)) # Output: <class 'list'> (list)...
    0 Комментарии 0 Поделились 12Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:50:42 - Перевод
    While Loop and For Loop
    In Python, while and for loops are fundamental constructs for repeated execution of code blocks. They serve different purposes, so understanding their strengths is crucial for writing efficient and readable code. While Loop: Syntax: Python while condition: # Code to execute as long as the condition is True Functionality: The while loop repeatedly...
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Python for Everybody - Full University Python Course Code добавлена новая статья Computer Programming
    2024-07-16 21:52:05 - Перевод
    Range and Nested Loops
    Range Function (range()) The range() function is a built-in function in Python used to generate a sequence of numbers. It takes up to three arguments: start (optional): The starting number of the sequence (inclusive). Defaults to 0. stop (required): The number one greater than the last element in the sequence (exclusive). step (optional): The increment between each number in the sequence....
    0 Комментарии 0 Поделились 10Кб Просмотры 0 предпросмотр
    Войдите, чтобы отмечать, делиться и комментировать!
  • Отображение (201-210 из 3129)
  • «
  • Назад
  • 19
  • 20
  • 21
  • 22
  • 23
  • Далее
  • »
© 2026 Inezar | A place to share knowledge and grow your career Russian
English Arabic French Spanish Portuguese Deutsch Turkish Dutch Italiano Russian Romaian Portuguese (Brazil) Greek
Help & Support Условия использования Политика конфиденциальности Свяжитесь с нами Support Center Каталог