%
//
/
**
*
=
!=
<>
=!
not
or
and
xor
~
|
&
^
skip
continue
break
pass
assert
for
while
if
exit
range()
input()
len()
list()
Tuple
Integer
String
List
Dictionary
Set
{}
[]
()
Appending
Concatenation
Deleting
Slicing
What is the output of following code
x = [1, 2, 3] print(x[1:10])
Error
[2, 3]
[1, 2, 3]
a = "Python" print(a[-4:-1])
tho
yth
hon
thoN
x = [10, 20, 30] print(x * 0)
[0, 0, 0]
[ ]
0