Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
key in dictionary
dictionary.contains(key)
dictionary.include(key)
key.exists(dictionary)
list.remove(element)
list.pop(index)
list.delete(element)
list.splice(index, 1)
for loop
while loop
do-while loop
switch loop
<
>
<=
:=
[ ]
( )
{ }
| |
string.upper()
string.toUpper()
string.casefold()
string.capitalize()
for i in range(n):
for i in range(0, n):
for i in range(1, n+1):
All of the above
for key in dictionary:
for value in dictionary:
for item in dictionary:
for key, value in dictionary.items():
break
continue
pass
exit
=
==
===
!=