Computer Science, asked by raksitha, 3 months ago

rewrite the output after removing all the error:
S='pure vida'
S1=S(:5)
S2=S(5:)
S3=S1*S2
S4=S2+'3'
S5=S1+3​

Answers

Answered by sidd22100
0

Answer:

S='pura vida'

S1=S[:5]

S2=S[5:]

S3=S1+S2

S4=S2+'3'

S5=S1*3

print(S1)

print(S2)

print(S3)

print(S4)

print(S5)

#output

pura

vida

pura vida

vida3

pura pura pura

Answered by rajaguru2651977
0

Answer:

I didn't know the Answer

Similar questions