5 Days
5 Challenges
5 Winners Everyday!
Solve Python challenges to get free 1-year subscription for Programiz Pro. #programizchallenge
5 Days
5 Challenges
5 Winners Everyday!
Solve Python challenges to get free 1-year subscription for Programiz Pro. #programizchallenge
Last day! Result announced!
WAP to print length of a list:
num_list = [1, 2, 3, 4, 5]
Result announced!
WAP to print the last item of a list:
my_list = [1, 2, 3]
Result announced!
WAP to reverse and print the given string:
my_string = "python"
Result announced!
WAP to find and print the square root of a given number:
num = 100
Result announced!
WAP to print only positive numbers from the list
numbers = [5, 9, -6, -7, 0]
for number in numbers:
if ______:
print(number)