Whatwillbetheoutput:
Name=‘Computersciencewithpython”
Print(name[3:10])
Answers
Answered by
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