python programming interview questions quiz 🙄🤔🤔 #python #programming #quiz #pythoninterview

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Start to stop-1 : 2 to 3-1 so ans becomes complex

sirigidivasu
Автор

Tuple indexing in tuple is 0 1 2 here the condition is 2:3 no index 3

ramacharan
Автор

x = (1, 'John', 1+3j)
print(type(x[2:3]))

Output:
<class 'tuple'>

PedroCarneiroJr