Complete the sentence to describe Stripe's main purpose.
Stripe is a platform that helps businesses [1] payments online.Stripe is mainly used to process payments online, allowing businesses to accept money from customers.
Complete the sentence to identify the type of Stripe account needed for live transactions.
To accept real payments, you need a [1] Stripe account.A live Stripe account is required to accept actual payments from customers.
Fix the error in this statement about Stripe API keys.
Use your [1] API key to test payments safely without charging real cards.The test API key is used to simulate payments safely during development without real charges.
Fill both blanks to describe the two main Stripe API key types.
Stripe provides [1] keys for public use and [2] keys for secure server use.
Stripe uses publishable keys on the client side and secret keys on the server side for security.
Fill all three blanks to complete the dictionary comprehension that filters Stripe charges over $50.
high_charges = [1]: [2] for [3] in charges if charge['amount'] > 5000
This comprehension creates a dictionary with charge IDs as keys and amounts as values, for charges over $50 (5000 cents).