πŸ“Š Problem Solving and Python Programming
Q. What will be displayed by print(ord(‘b’) – ord(‘a’))?
  • (A) 0
  • (B) 1
  • (C) -1
  • (D) 2
πŸ’¬ Discuss
βœ… Correct Answer: (B) 1

Explanation: ascii value of b is one more than a. hence the output of this code is 98-97, which is equal to 1.

Jump to