IntelliSkills CBSE
a = [1, 2]; b = a[:]print(a is b)
3 weeks ago | [YT] | 0
View 0 replies
print(bool([]))
x = 5; y = 10print(x > 2 or y < 5 and x == 0)
print(len({1, 2, 2, 3, 3}))
4 weeks ago | [YT] | 0
x = "Python"print(x.upper().lower().capitalize())
x = [1, 2, 3]x[1:2] = [4, 5]print(x)
1 month ago | [YT] | 0
print(10 // 3)print(10 % 3)
x = "hello"print(x.find("z"))
print(3 * "1" + "2")
x = 10; y = 20x, y = y, xprint(x, y)
Load more
IntelliSkills CBSE
a = [1, 2]; b = a[:]
print(a is b)
3 weeks ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
print(bool([]))
3 weeks ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
x = 5; y = 10
print(x > 2 or y < 5 and x == 0)
3 weeks ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
print(len({1, 2, 2, 3, 3}))
4 weeks ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
x = "Python"
print(x.upper().lower().capitalize())
4 weeks ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
x = [1, 2, 3]
x[1:2] = [4, 5]
print(x)
1 month ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
print(10 // 3)
print(10 % 3)
1 month ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
x = "hello"
print(x.find("z"))
1 month ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
print(3 * "1" + "2")
1 month ago | [YT] | 0
View 0 replies
IntelliSkills CBSE
x = 10; y = 20
x, y = y, x
print(x, y)
1 month ago | [YT] | 0
View 0 replies
Load more