0
0
No-Codeknowledge~30 mins

Basic workflows and actions in No-Code - Mini Project: Build & Apply

Choose your learning style9 modes available
Basic workflows and actions
📖 Scenario: You are organizing a simple daily task list to understand how workflows and actions work in everyday life.
🎯 Goal: Build a basic workflow that lists tasks, sets a priority level, marks tasks as done, and completes the task list.
📋 What You'll Learn
Create a list of tasks with exact names
Add a priority level variable
Mark tasks as done using a loop
Complete the workflow with a final status
💡 Why This Matters
🌍 Real World
Organizing daily tasks and understanding how simple workflows help manage actions step-by-step.
💼 Career
Basic workflow knowledge is useful in project management, office work, and any job requiring task tracking.
Progress0 / 4 steps
1
Create the task list
Create a list called tasks with these exact items: "Buy groceries", "Clean room", "Pay bills".
No-Code
Need a hint?

Use square brackets [] to create a list and separate items with commas.

2
Set the priority level
Create a variable called priority and set it to the string "High".
No-Code
Need a hint?

Use an equals sign = to assign the string "High" to the variable priority.

3
Mark tasks as done
Create a new list called done_tasks and use a loop to add each task from tasks to done_tasks, marking them as done.
No-Code
Need a hint?

Start with an empty list done_tasks = []. Use a for loop to go through each task in tasks and add it to done_tasks with append().

4
Complete the workflow
Create a variable called workflow_status and set it to the string "All tasks completed".
No-Code
Need a hint?

Assign the string "All tasks completed" to the variable workflow_status to show the workflow is done.