Respuesta :
Answer:
The function is as follows:
import random
import string
def solution(riddle):
s = list(riddle)
for i in range(len(riddle)):
alpha = "".join(random.choice(string.ascii_letters) for x in range(1))
alpha = alpha.lower()
if s[i] == '?':
if i > 0 and i < len(s)-1:
if s[i+1] != alpha:
s[i] = alpha
elif s[i-1] != alpha:
s[i] = alpha
else:
i=i
else:
if i == 0:
if s[1] != alpha:
s[i] = alpha
else:
i = i
else:
if s[i-1] != alpha:
s[i] = alpha
else:
i = i
riddle = ""
for ele in s:
riddle+=ele
return riddle
Explanation:
See attachment for explanation where comments are used to explain some lines
In this exercise we have to use the knowledge of the python language to write the code, so we have to:
The code is in the attached photo.
So to make it easier the code can be found at:
import random
import string
def solution(riddle):
s = list(riddle)
for i in range(len(riddle)):
alpha = "".join(random.choice(string.ascii_letters) for x in range(1))
alpha = alpha.lower()
if s[i] == '?':
if i > 0 and i < len(s)-1:
if s[i+1] != alpha:
s[i] = alpha
elif s[i-1] != alpha:
s[i] = alpha
else:
i=i
else:
if i == 0:
if s[1] != alpha:
s[i] = alpha
else:
i = i
else:
if s[i-1] != alpha:
s[i] = alpha
else:
i = i
riddle = ""
for ele in s:
riddle+=ele
return riddle
See more about python at brainly.com/question/26104476
