We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 304625d commit 963a912Copy full SHA for 963a912
web_programming/currency_converter.py
@@ -186,11 +186,11 @@ def convert_currency(
186
187
188
if __name__ == "__main__":
189
- baseCurrency = input("Enter base currency: ").strip()
190
- targetCurrency = input("Enter target currency: ").strip()
+ base_currency = input("Enter base currency: ").strip()
+ target_currency = input("Enter target currency: ").strip()
191
amount = input("Enter the amount: ").strip()
192
print(
193
convert_currency(
194
- baseCurrency=baseCurrency, targetCurrency=targetCurrency, amount=amount
+ baseCurrency=base_currency, targetCurrency=target_currency, amount=amount
195
)
196
0 commit comments