0
0
No-Codeknowledge~30 mins

One-time payments in No-Code - Mini Project: Build & Apply

Choose your learning style9 modes available
One-time Payments Setup
📖 Scenario: You are setting up a simple system to track one-time payments made by customers for a service.This system will help you organize payment data and understand how to manage one-time payments effectively.
🎯 Goal: Build a clear structure to record one-time payments, configure a threshold for payment amount, identify payments above the threshold, and finalize the setup for easy review.
📋 What You'll Learn
Create a list of payment amounts with exact values
Add a threshold variable to identify large payments
Use a method to select payments above the threshold
Complete the setup by adding a summary count of large payments
💡 Why This Matters
🌍 Real World
Tracking one-time payments helps businesses understand customer spending and manage revenue effectively.
💼 Career
This knowledge is useful for roles in finance, accounting, and business management where payment data analysis is important.
Progress0 / 4 steps
1
Create the payment amounts list
Create a list called payments with these exact payment amounts: 50, 120, 75, 200, and 30.
No-Code
Need a hint?

Use square brackets to create a list and separate the numbers with commas.

2
Set the payment threshold
Add a variable called threshold and set it to 100 to mark payments above this amount as large.
No-Code
Need a hint?

Just assign the number 100 to the variable named threshold.

3
Select payments above the threshold
Create a list called large_payments that contains only the payments from payments that are greater than threshold.
No-Code
Need a hint?

Use a list comprehension to filter payments greater than the threshold.

4
Add a summary count of large payments
Create a variable called count_large that stores the number of payments in large_payments.
No-Code
Need a hint?

Use the len() function to count items in the list.