Learn programming concepts interactively
greeting
="Hello World"age
=25numbers
=[1,2,3,4,5]# Python Basics - Interactive Tutorial# Currently exploring: variables# === Variable Assignments ===greeting = "Hello World"age = 25numbers = [1,2,3,4,5]# === Type Information ===# type(greeting) = str# type(age) = int# type(numbers) = list# === Variable Operations ===# Variables are like labeled boxes that store valuesprint(f"{variable.name} = {greeting} (type: {type(greeting).__name__})")print(f"{variable.name} = {age} (type: {type(age).__name__})")print(f"{variable.name} = {numbers} (type: {type(numbers).__name__})")# Ready for Python exploration!
No operations yet
Start by adding or modifying elements