← Back to Dashboard
Day 01

Input, Output & Variables

1. Hello World

The first step in any language.

print("Hello, Dyka Digital!")

2. Variables

Storing data is easy. No types required.

name = "Alex"       # String
age = 25            # Integer
price = 19.99       # Float

3. F-Strings

The cleanest way to combine text and data.

role = "Developer"
print(f"I am a {role}")

🚀 Daily Challenge

Create a script that asks for a user's name and birth year, then calculates their age.