Sección 3. Capítulo 7
single
Challenge: Implement Compliance Flags
Desliza para mostrar el menú
Tarea
Swipe to start coding
Given a DataFrame of transactions, you need to identify which transactions should be flagged for compliance review. A transaction should be flagged if its amount is greater than $10,000 or if its country is in the provided list of high-risk countries. You must add a new column called compliance_flag to the DataFrame, indicating with True or False whether each transaction is flagged. After updating the DataFrame, print a summary statement showing how many transactions were flagged out of the total.
Conceptual steps:
- Add a
compliance_flagcolumn to the DataFrame. - Set
compliance_flagtoTruefor transactions where the amount is greater than $10,000 or the country is in the high-risk list. - Set
compliance_flagtoFalsefor all other transactions. - Print a summary statement showing the number of flagged transactions and the total number of transactions.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 7
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla