l = [2,3,4,5]
l = l[::-1]
print(l)
Which package is used for testing R code.
What will be the output of the following Python code snippet?
print('Hello World'.istitle())
What will be the output of the following Python code snippet?
print('abef'.replace('cd', '12'))
What will be the output of the following Python code?
>>>t = (1, 2)
>>>2 * t
The purpose of the round() function is to...
What will be the output of the following Python code snippet?
x = 2
for i in range(x):
x += 1
print (x)
What will be the output of the following Python code?
string = "my name is x"
for i in string:
print (i, end=", ")
What will be the output of the following Python code?
a = ('check',)
n = 2
for i in range(int(n)):
a = (a,)
print(a)
What will be the output of the following Python code?
import turtle
t=turtle.Pen()
t.color(0,0,1)
t.begin_fill()
t.circle(15)
t.end_fill()