Which of these is a private data field?def Demo:def __init__(self): __a = 1 self.__b = 1 self.__c__ = 1 __d__= 1
What is the output of the following code ?example = "snow world"example[3] = 's'print example
What is the output of the following?print('1.1'.isnumeric())
What will be the output of the following Python code?
print('ab'.isalpha())
What is the output of the following?print('xyyxyyxyxyxxy'.replace('xy', '12', 100))