Computer Science, asked by gunasree92, 6 months ago

Whatwillbetheoutput:

Name=‘Computersciencewithpython”
Print(name[3:10])​

Answers

Answered by allysia
1

Corrections:

Lemme correct your code snippet first, as shown below:

(If it was how you wrote it in the question it will created 4 types of errors).

__________________________________

name='Computersciencewithpython'

print(name[3:10])

__________________________________

Answer:

The output should be:

putersc

Similar questions