Goal: Strengthen Python fundamentals through progressive exercises, challenges, and complete console projects.
| Metric | Value |
|---|---|
| Readiness | 80% |
| Files | 16 |
| Source files | 4 |
| Test files | 0 |
| Text lines | 2,056 |
Week1Python/Day1StartingwithPython/Exercises/ExercisesXP/exercisesxp.pyWeek1Python/Day1StartingwithPython/Exercises/ExercisesXPGold/exercisesxpgold.pyWeek1Python/Day1StartingwithPython/Exercises/ExercisesXPNinja/exercisesxpninja.py
python Week1Python/Day1StartingwithPython/Exercises/ExercisesXP/exercisesxp.py
python Week1Python/Day1StartingwithPython/Exercises/ExercisesXPGold/exercisesxpgold.py
python Week1Python/Day1StartingwithPython/Exercises/ExercisesXPNinja/exercisesxpninja.py- ✅ README documentation is generated and repeatable.
- ✅ Contains 4 source file(s) across practical exercises or projects.
- ✅ No Python syntax error was detected in this folder tree.
- ✅ A likely runnable entry point was detected.
⚠️ No local unit test is present yet; repository-wide syntax checks still cover the sources.
python tools/nova_quality_gate.py --repo . --strict
python -m unittest discover -s tests/python -p "test_*.py" -v
node tools/run_node_tests.mjs .The readiness value is a transparent repository heuristic, not a course grade and not proof that every interactive or external-API exercise was executed.
Managed by NOVA Ultimate v2.0.0 · 2026-07-15T06:22:48+03:00
Author: Kevin Cusnir "Lirioth"
Course: Fullstack Bootcamp 2026
Last Updated: October 18, 2025
Welcome to your Python programming journey! 🐍 This day covers the fundamental building blocks that form the foundation of all Python programming.
Day 1 establishes the baseline Python skills used throughout the bootcamp. You will practice variables, input/output, conditionals, and string manipulation while exploring progressively harder XP, Gold, and Ninja challenges plus a daily project.
- Structured folders for XP, Gold, Ninja, and Daily Challenge tasks
- Interactive scripts with validation helpers for user input
- Reference tables and quick guides for beginner-friendly revision
cd Day1StartingWithPython/Exercises/ExercisesXP
python exercisesxp.pyRun the Gold, Ninja, and Daily Challenge programs from their respective directories using the same pattern.
| Metric | Value |
|---|---|
| ⏰ Duration | 5-7 hours |
| 🎯 Difficulty | 🟢 Beginner |
| 📝 Exercises | 9 (XP) + 6 (Gold) + 5 (Ninja) + 1 (Daily Challenge) |
| ✅ Prerequisites | None - perfect for absolute beginners! |
| 🐍 Python Version | 3.8+ |
| 📚 Key Topics | Variables, Data Types, Conditionals, Strings |
- 📦 Overview
- ✨ Features
- ⚡ Quick Start
- 🎯 Learning Objectives
- 📚 Topics Covered
- 📁 Directory Structure
- ✅ Prerequisites
- ⏰ Time Estimates
- 🗺️ Learning Path
- 💡 Key Concepts Quick Reference
- 🚀 Getting Started
- 📊 Assessment Checklist
- 🔧 Troubleshooting & Common Issues
- 🔗 Next Steps
- 📄 License
By the end of this day, you will confidently:
- ✅ Write Python programs using proper syntax and data types
- 🔢 Perform arithmetic operations and handle type conversions
- 💬 Create interactive programs with user input and formatted output
- 🔀 Implement conditional logic for decision-making
- 🔤 Manipulate strings with various operations and methods
- 🛡️ Handle errors gracefully with validation techniques
- 📝 Variables & Data Types: strings, integers, floats, booleans
- 🔢 Arithmetic Operations: basic math, exponentiation, modulus
- 🔍 Comparison Operators: equality, inequality, greater/less than
- 🧩 Boolean Logic: True/False evaluation and logical operators
- 💬 Input/Output:
print()formatting,input()collection - 🔀 Conditional Statements:
if,elif,elsedecision trees - 🔤 String Operations: concatenation, indexing, formatting techniques
- Writing clean, readable code with proper naming conventions
- Understanding Python's interactive nature and REPL usage
- Creating user-friendly console applications
- Debugging common syntax and logic errors
- Implementing input validation and error handling
Day1StartingWithPython/
├── 📄 README.md # This comprehensive guide
├── 🏋️ Exercises/
│ ├── 🥉 ExercisesXP/ # 9 fundamental exercises
│ │ ├── exercisesxp.py # Complete implementation
│ │ └── README.md # Exercise descriptions
│ ├── 🥈 ExercisesXPGold/ # Enhanced practice
│ │ ├── exercisesxpgold.py # Intermediate challenges
│ │ └── README.md # Challenge descriptions
│ └── 🥇 ExercisesXPNinja/ # Advanced problem-solving
│ ├── exercisesxpninja.py # Expert-level challenges
│ └── README.md # Advanced concepts
└── 💪 DailyChallenge/
└── BuildUpAString/ # String manipulation mastery
├── buildupastring.py # Interactive string builder
└── README.md # Challenge specifications
Before starting Day 1, make sure you have:
- ✅ Python 3.8+ installed (Download)
- ✅ Text editor or IDE (VS Code, PyCharm, or IDLE)
- ✅ Basic terminal/command prompt knowledge
- ✅ No prior programming experience required! 🎉
- Windows 10/11: ✅ Fully supported
- macOS 10.15+: ✅ Fully supported
- Linux (Ubuntu 20.04+): ✅ Fully supported
Verify your Python installation:
# Windows (PowerShell or CMD)
python --version
# macOS / Linux
python3 --version
# Expected output: Python 3.8.x or higherPlan your learning journey:
| Activity | Duration | Difficulty |
|---|---|---|
| 🥉 ExercisesXP | 45-60 minutes | 🟢 Beginner |
| 🥈 ExercisesXPGold | 30-45 minutes | 🟡 Intermediate |
| 🥇 ExercisesXPNinja | 45-60 minutes | 🔴 Advanced |
| 💪 Daily Challenge | 20-30 minutes | 🟡 Intermediate |
| Total Day 1 | 2.5-4 hours | 🟢 Beginner |
Follow this progression for optimal learning:
🎯 START
↓
🥉 ExercisesXP (Required)
↓
🥈 ExercisesXPGold (Recommended)
↓
🥇 ExercisesXPNinja (Optional)
↓
💪 Daily Challenge (Skill Test)
↓
✅ COMPLETE - Ready for Day 2!
Before diving into exercises, let's verify you're ready. Open your Python terminal and type:
>>> name = input("Your name: ")
Your name: Alice
>>> print(f"Hello {name}! 🎉")
Hello Alice! 🎉
>>> age = 2024 - int(input("Birth year: "))
Birth year: 1995
>>> print(f"You are about {age} years old!")
You are about 29 years old!
>>> favorite_color = input("Favorite color: ")
Favorite color: blue
>>> print(f"{name} loves {favorite_color}! 💙")
Alice loves blue! 💙See? You're already programming! 🚀 Now let's learn the concepts behind this magic.
# Creating variables (no need to declare type!)
name = "Alice" # String
age = 25 # Integer
height = 5.6 # Float
is_student = True # Boolean
# Variables can change
score = 100
score = score + 50 # score is now 150
score += 25 # Shorthand: score is now 175# String - Text in quotes
message = "Hello World"
name = 'Alice' # Single or double quotes both work
# Integer - Whole numbers
age = 25
year = 2024
score = -10 # Can be negative
# Float - Decimal numbers
price = 19.99
temperature = -5.5
# Boolean - True or False
is_active = True
has_passed = False
# Check type
print(type(name)) # <class 'str'>
print(type(age)) # <class 'int'># String to Integer
age_str = "25"
age_int = int(age_str) # 25
# Integer to String
score = 100
score_str = str(score) # "100"
# String to Float
price_str = "19.99"
price_float = float(price_str) # 19.99
# Common mistake!
user_age = input("Age: ") # Returns STRING!
if user_age > 18: # ❌ ERROR! Can't compare str with int
print("Adult")
# Correct way
user_age = int(input("Age: ")) # Convert to int first
if user_age > 18: # ✅ Works!
print("Adult")# Concatenation
first = "Hello"
last = "World"
message = first + " " + last # "Hello World"
# F-strings (modern, recommended!)
name = "Alice"
age = 25
info = f"My name is {name} and I'm {age}"
# "My name is Alice and I'm 25"
# String methods
text = " Hello World "
print(text.lower()) # " hello world "
print(text.upper()) # " HELLO WORLD "
print(text.strip()) # "Hello World" (removes spaces)
print(len(text)) # 15 (includes spaces)# Basic if statement
age = 20
if age >= 18:
print("Adult")
# if-else
age = 15
if age >= 18:
print("Adult")
else:
print("Minor")
# if-elif-else (multiple conditions)
score = 85
if score >= 90:
print("Grade: A")
elif score >= 80:
print("Grade: B")
elif score >= 70:
print("Grade: C")
else:
print("Grade: F")x = 10
y = 5
x == y # False (equal to)
x != y # True (not equal to)
x > y # True (greater than)
x < y # False (less than)
x >= y # True (greater than or equal to)
x <= y # False (less than or equal to)
# Comparing strings
"hello" == "hello" # True
"Hello" == "hello" # False (case-sensitive!)
"apple" < "banana" # True (alphabetical order)age = 20
has_id = True
# AND - both conditions must be true
if age >= 18 and has_id:
print("Can enter club")
# OR - at least one condition must be true
if age < 5 or age > 65:
print("Discount available")
# NOT - reverses the condition
is_weekend = False
if not is_weekend:
print("It's a weekday")⏰ Time: 45-60 minutes | 🎯 Difficulty: 🟢 Beginner Master the core concepts with these 9 essential exercises:
cd Exercises/ExercisesXP
python exercisesxp.py📋 Exercise Breakdown:
- Exercise 1: 🌍 Hello World Variations - Master print() formatting
- Exercise 2: 🔢 Arithmetic Power - Exponentiation and large number calculations
- Exercise 3: 🧩 Boolean Comparisons - Truth evaluation and type comparison
- Exercise 4: 💻 Variable Assignment - String concatenation and variable usage
- Exercise 5: 👤 Personal Information - Complex string building with type conversion
- Exercise 6: 🔍 Number Comparison - Conditional logic implementation
- Exercise 7: ⚡ Odd/Even Detector - Modulus operations with user input
- Exercise 8: 🤝 Name Matching - String comparison and case handling
- Exercise 9: 🎢 Height Validator - Practical decision-making application
⏰ Time: 30-45 minutes | 🎯 Difficulty: 🟡 Intermediate
Reinforce concepts with real-world scenarios:
cd Exercises/ExercisesXPGold
python exercisesxpgold.py⏰ Time: 45-60 minutes | 🎯 Difficulty: 🔴 Advanced
Push your problem-solving boundaries:
cd Exercises/ExercisesXPNinja
python exercisesxpninja.py⏰ Time: 20-30 minutes | 🎯 Difficulty: 🟡 Intermediate
Test mastery with interactive string manipulation:
cd DailyChallenge/BuildUpAString
python buildupastring.py🎯 Challenge Features:
- ✅ Length Validation: Exactly 10 characters required
- 🔍 Character Analysis: First/last character extraction
- 🏗️ Progressive Building: Character-by-character visualization
- 🔀 String Shuffling: Random character rearrangement
- 🛡️ Error Handling: Graceful input validation
Track your progress and ensure mastery before advancing:
- ✅ Complete all 9 exercises in ExercisesXP
- 📝 Understand variable assignment and naming conventions
- 🔢 Master basic arithmetic and type conversion operations
- 💬 Write clean input/output operations with proper formatting
- 🔀 Implement conditional statements with correct logic
- 🔤 Perform string concatenation and basic manipulation
- 🛡️ Handle basic error scenarios gracefully
- 🏆 Complete ExercisesXPGold challenges successfully
- 🎨 Apply advanced string formatting techniques (f-strings)
- 🧩 Handle edge cases in conditional statements
- 🔍 Implement input validation with multiple conditions
- 📊 Understand boolean logic and complex comparisons
- 🚀 Complete ExercisesXPNinja challenges
- ⚡ Optimize code for efficiency and readability
- 🛠️ Add comprehensive error handling
- 🎯 Create reusable code patterns and functions
- 📈 Analyze and improve algorithm performance
- 🎪 Complete BuildUpAString daily challenge
- 🔧 Understand string methods and advanced manipulation
- 🧠 Apply creative problem-solving approaches
- 🎨 Implement user-friendly interface design
- 🔬 Demonstrate deep understanding of string processing
| Problem | Symptoms | Solution |
|---|---|---|
| SyntaxError | invalid syntax message |
✅ Check indentation, quotes, and parentheses |
| NameError | name 'variable' is not defined |
✅ Define variables before using them |
| TypeError | unsupported operand type(s) |
✅ Use int(), str(), float() for conversion |
| ValueError | invalid literal for int() |
✅ Validate input before conversion |
| IndentationError | unexpected indent |
✅ Use consistent spacing (4 spaces recommended) |
- 🐌 Start Methodically: Focus on understanding over speed
- 🔁 Practice Regularly: Run code frequently to see immediate results
- ❓ Comment Actively: Use
#to explain your thinking process - 🐛 Debug Systematically: Read error messages carefully and locate line numbers
- 📖 Reference Documentation: Use Python's built-in
help()function - 🤝 Collaborate: Discuss concepts with peers and instructors
# Use interactive Python shell for quick testing
python3
>>> print("Hello, World!")
# Check Python version
python3 --version
# Use help for built-in functions
>>> help(input)
>>> help(print)After completing Day 1:
- ➡️ Proceed to Day 2: Lists, iteration, and formatting
- 📖 Review concepts: Ensure solid understanding before moving on
- 🤔 Reflect: What was challenging? What was easy?
This day’s exercises and notes are distributed under the repository’s MIT License.
Kevin Cusnir "Lirioth"
- 🎓 Fullstack Developer Student
- 💻 GitHub: @Lirioth
- 📧 Repository: Fullstack2026
What it means: Forgetting quotes around strings
Example:
❌ print(Hello World) # SyntaxError: invalid syntax
✅ print("Hello World") # Correct - strings need quotesWhat it means: Trying to use a variable that doesn't exist
Example:
❌ print(name) # NameError: name 'name' is not defined
✅ name = "Alice" # Define variable first
print(name) # Now it worksWhat it means: Trying to combine incompatible types
Example:
❌ age = "25"
next_year = age + 1 # TypeError: can only concatenate str to str
✅ age = int("25") # Convert to integer first
next_year = age + 1 # Now works: 26
# Or for display:
✅ age = "25"
print("Next year: " + str(int(age) + 1)) # Convert, calculate, convert backWhat it means: Python requires consistent indentation
Example:
❌ if age > 18:
print("Adult") # IndentationError: expected an indented block
✅ if age > 18:
print("Adult") # Correct - indented with 4 spacesWhat it means: Can't convert string to expected type
Example:
❌ age = int(input("Age: ")) # User types "twenty" → ValueError
✅ # Add validation
age_input = input("Age: ")
if age_input.isdigit():
age = int(age_input)
else:
print("Please enter a number")What it means: Assignment vs comparison
Example:
❌ if age = 18: # SyntaxError: invalid syntax
print("Eighteen")
✅ if age == 18: # Correct - use == for comparison
print("Eighteen")What it means: input() always returns a string
Example:
❌ age = input("Age: ") # Returns "25" as string
if age > 18: # TypeError: '>' not supported between str and int
✅ age = int(input("Age: ")) # Convert to integer
if age > 18: # Now works correctly
print("Adult")⏱️ Estimated Time: 4-6 hours
🎯 Difficulty: Beginner
📋 Prerequisites: Basic computer literacy
Good luck with your first day of Python programming! 🚀