The first step in any language.
print("Hello, Dyka Digital!")
Storing data is easy. No types required.
name = "Alex" # String
age = 25 # Integer
price = 19.99 # Float
The cleanest way to combine text and data.
role = "Developer"
print(f"I am a {role}")
Create a script that asks for a user's name and birth year, then calculates their age.