InterviewSolution
Saved Bookmarks
| 1. |
mySubject = "Computer Science" What will be the output of the following string operations : A. print(mySubject[0:len(mySubject)]) B. print(mySubject[-7:-1]) C. print(mySubject[::2]) D. print(mySubject[len(mySubject)-1]) E. print(2*mySubject) F. print(mySubject[::-2]) Q20 |
|
Answer» followme=followbackMark as BRAINLIEST |
|