def add_dollar(text):
return '$$' + text[2:-2] + '$$'
res = "$$" + text[2:-2] + "$$"
return res
print(add_dollar("Gran Torino"))
Kod napisany w Pythonie
Jeśli coś jest niezrozumiałe to pisz, a chętnie wyjaśnię
Pozdrawiam :)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Verified answer
def add_dollar(text):
return '$$' + text[2:-2] + '$$'
def add_dollar(text):
res = "$$" + text[2:-2] + "$$"
return res
print(add_dollar("Gran Torino"))
Kod napisany w Pythonie
Jeśli coś jest niezrozumiałe to pisz, a chętnie wyjaśnię
Pozdrawiam :)