Login and Register ×
Check your Email for the OTP
x = [4, 0, 7] y = str(x[0]) + str(x[1]) print(y)
x = [5, 4, 3, 2, 1] y = x.copy() print(y)
x = list(map(lambda x:x**2, range(5))) print(x)
x = [4, 5, 7, 8, 9] y = x y[1] = 6 print(x)
x = [i*2-4 for i in range(5)] print(x)
x = [5, 3, 6, 2, 4, 0, 7] del x[0:4] print(x)
x = [5, 3, 6, 2, 4, 0, 7] del x[0:7] print(x)
x = ['hot', '100', True] weather = x[0] temperature = x[1] humid = x[2] print(weather, temperature, humid)
x = [i**4//7 for i in range(0,6,2)] print(x)
x = ['hot', '100', True] weather, temperature, humid = x print(weather, temperature, humid)