Which of these in not a core data type?
Find the output of the following code:
l=[1,2,3,4,5,6,7,8]
del l[3]
print(l)
t1=(1)
t2=(3,4)
print(t1)
print(t1+t2)
print(1,
2,
3,
4, sep='*')
What is the output of the following code?
s = "abc"
s.upper()
print(s)
What are the prerequisites required to learn Django?
Which of the following Python codes will result in an error?
object = ‘a’
Which of the following operations on the given dictionary will not result in an error?
Suppose dict1 = {"a": 4, "b": 5, "c": 6}