Computer Science, asked by rohitashar123, 5 months ago

Find output generated by line1 and line 2: >>>String Str=”Computer”
>>>Str[‐4:] #line1
>>>Str*2 #line2

Answers

Answered by MrUnKnOwn33
2

Answer:

String Str=”Computer”

str[-4:]

output : uter

str*2

output: computer, computer

Similar questions