# Trump vs Powell Showdown 🔥🇺🇸⚖️
trump = {
"name": "Donald Trump",
"power": "🔥 Rallies & Bold Tweets",
"style": "Loud & Proud 🎤",
"fans": "MAGA Crowd 🇺🇸",
"emoji": "🧱🦅"
}
powell = {
"name": "Jerome Powell",
"power": "📉 Interest Rates & Fed Moves",
"style": "Calm & Calculated 🧠",
"fans": "Wall Street 📊",
"emoji": "💼📉"
}
def face_off(p1, p2):
print(f"{p1['emoji']} {p1['name']} vs {p2['name']} {p2['emoji']}")
print("Power Clash:")
print(f"{p1['name']}: {p1['power']}")
print(f"{p2['name']}: {p2['power']}")
print("\nStyle Battle:")
print(f"{p1['style']} VS {p2['style']}")
print("\nWho wins? Depends on the battlefield! 🏛️💰")
face_off(trump, powell)