0
0
No-Codeknowledge~10 mins

Creating and displaying data in No-Code - Try It Yourself

Choose your learning style9 modes available
Creating and Displaying Data
📖 Scenario: You are organizing a small event and want to keep track of the number of guests who have confirmed their attendance. You will create a simple list of guest names, add a count of confirmed guests, and then prepare a message to display the total number of guests coming.
🎯 Goal: Build a simple data structure to hold guest names, add a count of confirmed guests, and create a message that shows the total number of guests confirmed.
📋 What You'll Learn
Create a list called guest_names with exactly these names: "Alice", "Bob", "Charlie"
Create a variable called confirmed_count that holds the number 3
Create a message string called confirmation_message that says exactly: "Total guests confirmed: 3"
Use the exact variable names guest_names, confirmed_count, and confirmation_message
💡 Why This Matters
🌍 Real World
Keeping track of guest lists and confirmations is common in event planning and helps organizers prepare properly.
💼 Career
Understanding how to organize and display data clearly is important in many jobs, including administration, customer service, and software development.
Progress0 / 4 steps
1
Create the guest list
Create a list called guest_names with these exact names: "Alice", "Bob", and "Charlie".
No-Code
Need a hint?

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

2
Add the confirmed guest count
Create a variable called confirmed_count and set it to the number 3.
No-Code
Need a hint?

Just assign the number 3 to the variable confirmed_count.

3
Create the confirmation message
Create a string variable called confirmation_message that exactly says: "Total guests confirmed: 3".
No-Code
Need a hint?

Use quotes to create the string exactly as shown.

4
Complete the data display setup
Ensure all variables guest_names, confirmed_count, and confirmation_message are present together as final setup.
No-Code
Need a hint?

Check that all three variables are defined exactly as before.