Computer Science
What is the ASCII equivalent decimal no. for 'Y'?
- 87
- 88
- 89
- 90
Python String Manipulation
2 Likes
Answer
89
Reason — The ASCII equivalent decimal number for 'Y' is 89.
Answered By
2 Likes
Related Questions
What will be the output of the following code?
A = 'Virtual Reality' A.replace('Virtual', 'Augmented')- Virtual Augmented
- Reality Augmented
- Augmented Virtual
- Augmented Reality
What will be the output of the following?
print("ComputerScience".split("er", 2))- ["Computer", "Science"]
- ["Comput", "Science"]
- ["Comput", "erScience"]
- ["Comput", "er", "Science"]
STR = "RGBCOLOR" colors = list(STR)How do we delete 'B' in given List colors?
- del colors[2]
- colors.remove("B")
- colors.pop(2)
- All of these
Which of the following will give "Simon" as output?
str1 = "Hari,Simon,Vinod"- print(str1[-7:-12])
- print(str1[-11:-7])
- print(str1[-11:-6])
- print(str1[-7:-11])