$search = array(':');
$replace = array('H', 'M');
$time = '15:20:43';
$result = str_replace($search, $replace, $time) . 'S';
echo $result;
$search = array(':', ':');
$replace = array('H', 'M');
$time = '15:20:43';
$result = str_replace($search, $replace, $time) . 'S';
echo $result;
usd = 65.59
euro = 75.37
new_exchange = []
money = int (input("Введите сумму, которую хотите обменять в валюту "))
exchange = input ("Выберите валюту (USD или Euro) ")
while new_exchange == ():
if exchange.lower() == "usd":
result_usd = money * usd
print("После обмена вы получите", result_usd, "долларов сша")
elif exchange.lower() == "euro":
result_euro = money * euro
print("После обмена вы получите", result_euro, " евро")
new_exchange = input ("Хотите снова обменять?? ")
if new_exchange.lower == "да"
print("Работа программы завершена! ")
File "C:\python\test.py", line 13
result_usd = money * usd
^
TabError: inconsistent use of tabs and spaces in indentation