About 584,000 results
Open links in new tab
  1. string — Common string operations — documentación de Python

    La versión por defecto entiende los tipos de conversión “s” (str), “r” (repr) y “a” (ascii). Format string syntax ¶ The str.format() method and the Formatter class share the same syntax for format strings …

  2. Regular Expression HOWTO — Python 3.14.3 documentation

    Mar 25, 2026 · Regular Expression HOWTO ¶ Author: A.M. Kuchling <amk @ amk. ca> Abstract This document is an introductory tutorial to using regular expressions in Python with the re module. It …

  3. Variables en python: Texto y números - Tutorial python

    Las variables en python más usadas y por tanto más importantes son las de texto (string) y numéricas (float e int).

  4. Python Strings (With Examples) - Programiz

    Python Strings In Python, a string is a sequence of characters. For example, "hello" is a string containing a sequence of characters 'h', 'e', 'l', 'l', and 'o'. We use single quotes or double quotes to represent a …

  5. 9. Classes — Python 3.14.3 documentation

    Mar 25, 2026 · 9.3.5. Class and Instance Variables ¶ Generally speaking, instance variables are for data unique to each instance and class variables are for attributes and methods shared by all instances of …

  6. Strings en Python

    Es por ello que en Python 3.6 se añadieron los f-strings. Los f-strings son cadenas de texto con una f al inicio y expresiones entre llaves que se sustituyen por sus valores, tal y como se muestra a …

  7. Domina las Variables y Tipos de Datos en Python como un Pro

    Jan 31, 2024 · Artículo básico de Python. Concepto de variables, declaraciones, tipos de datos y ejemplos.

  8. Basic Data Types in Python: A Quick Exploration – Real Python

    In this tutorial, you'll learn about the basic data types that are built into Python, including numbers, strings, bytes, and Booleans.

  9. os — Miscellaneous operating system interfaces — Python 3.14.3 ...

    In Python, file names, command line arguments, and environment variables are represented using the string type. On some systems, decoding these strings to and from bytes is necessary before passing …

  10. 7. Input and Output — Python 3.14.3 documentation

    Mar 26, 2026 · The string type has some methods that perform useful operations for padding strings to a given column width. When you don’t need fancy output but just want a quick display of some …