About 1,140,000 results
Open links in new tab
  1. Python Variables - W3Schools

    Creating Variables Python has no command for declaring a variable. A variable is created the moment you first assign a value to it.

  2. Python Variables – Complete Guide

    Jul 23, 2024 · Learn about Python variables with detailed examples. Understand different types, including integers, floats, strings, and more. Master scope, type conversion, and best practices.

  3. Python Variables - GeeksforGeeks

    Mar 25, 2026 · Python variables hold references to objects, not the actual objects themselves. Reassigning a variable does not affect other variables referencing the same object unless explicitly …

  4. Python - Variables - Online Tutorials Library

    Python variables are the reserved memory locations used to store values with in a Python Program. This means that when you create a variable you reserve some space in the memory.

  5. Variables en python

    Feb 1, 2026 · Visibilité des variables : par défaut, une variable est toujours locale, donc disponible seulement dans la fonction dans laquelle est elle définie. par exemple : x = 0 def myFunc(): x = 1 …

  6. Variablen in Python: einfach erklärt mit Beispielen - MINT first.

    Aug 17, 2021 · Erfahre, wie Variablen in Python funktionieren – Definition, Datentypen, häufige Fehler und praktische Code-Beispiele für Einsteiger!

  7. Python Variables

    In this tutorial, you will learn about variables in Python language. You will learn how to create variables, initialize variables, reassign variables, get type of value in a variable, use variables in an expression, …

  8. Variables and Types - Learn Python - Free Interactive Python Tutorial

    Python is completely object oriented, and not "statically typed". You do not need to declare variables before using them, or declare their type. Every variable in Python is an object. This tutorial will go …

  9. Was sind Python Variablen? - Data Basecamp

    Sep 6, 2025 · Was sind Python Variablen? In Python dienen Variablen als Container für die Speicherung und Verwaltung von Daten während der Programmausführung. Einfach ausgedrückt, ist eine …

  10. Python - Global Variables - W3Schools

    Global Variables Variables that are created outside of a function (as in all of the examples in the previous pages) are known as global variables. Global variables can be used by everyone, both …