>>>a='a'
>>>b=ord(a)
>>>print(b)
Is Python a case-sensitive language or not?
_________ predefined variable stores the currecnt module name.
Which method is used to return a part of a string in Python?
On assigning a value to a variable inside a function, it automatically becomes a global variable.
What values are returned by expressions using comparison operators?
Which of these about a set is not true?
What are the results of the following divmod() operations?
divmod(10.5, 5)
divmod(2.4, 1.2)