0
0
No-Codeknowledge~30 mins

User profile management in No-Code - Mini Project: Build & Apply

Choose your learning style9 modes available
User Profile Management
📖 Scenario: You are helping a small community center organize their member information. They want to keep track of each member's name, age, and email address in a simple list.
🎯 Goal: Build a simple user profile list that stores member details and allows adding new members with basic validation.
📋 What You'll Learn
Create a list of user profiles with name, age, and email
Add a variable to set the minimum age allowed for membership
Use a loop or filter to select only members who meet the minimum age
Add a final step to confirm the list is ready for use
💡 Why This Matters
🌍 Real World
Managing user profiles is common in community centers, clubs, and online platforms to keep track of members and their details.
💼 Career
Understanding how to organize and filter user data is important for roles in administration, customer service, and software development.
Progress0 / 4 steps
1
Create the initial user profiles list
Create a list called user_profiles with these exact entries: {'name': 'Alice', 'age': 30, 'email': 'alice@example.com'}, {'name': 'Bob', 'age': 22, 'email': 'bob@example.com'}, and {'name': 'Charlie', 'age': 17, 'email': 'charlie@example.com'}.
No-Code
Need a hint?

Use a list with dictionaries for each user profile.

2
Set the minimum age for membership
Create a variable called minimum_age and set it to 18.
No-Code
Need a hint?

Just assign the number 18 to the variable minimum_age.

3
Filter users who meet the minimum age
Create a new list called eligible_users that includes only the users from user_profiles whose age is greater than or equal to minimum_age.
No-Code
Need a hint?

Use a list comprehension to filter users by age.

4
Confirm the user profile list is ready
Add a variable called profiles_ready and set it to True to indicate the user profile list is complete and ready for use.
No-Code
Need a hint?

Just assign True to profiles_ready to mark completion.