Solving Python Beginner Challenges + Giveaway

preview_player
Показать описание
For beginners, solving challenges help to build programming logic and programming is all about how you apply logic to solve a problem. In this video, Punit will go through easy, medium, and hard challenges and explain how to solve them.

----- Learn Python App by Programiz -----

~
Programiz PRO Giveaway
Solve Programiz Python challenges which will be up every day at 4:15 AM PST from today to Friday, Feb 19, 2021. And get a chance to win a free 1-year subscription to Programiz Pro. 5 lucky winners will be announced on Programiz's Youtube community at 3:15 AM PST every day for 5 consecutive days.

Are you ready?

All you have to do is:
1️⃣ Like this video
2️⃣ Subscribe to our YouTube channel
3️⃣ Follow us on social media platforms (links below)
4️⃣ Post your challenge solution in the comment section or the YouTube community with the hashtag #programizchallenge.

Be part of the lucky 5. Your time starts...NOW!

Links:

#programiz #pythonchallenges #pythonchallenges #programizprogiveaway #giveaway #python
Рекомендации по теме
Комментарии
Автор

Watch out this space for Winners Announcement:

programizstudios
Автор

#programizchallenge

numbers = [5, 9, -6, -7, 0]
for number in numbers:
if number > 0:
print(number)

mubashirm.khalid
Автор

Your videos are really helpful. Thanks!

axxiar
Автор

numbers = [5, 9, -6, -7, 0]
for number in numbers:
if number >=0:
print(number)

diwakard
Автор

#programizchallenge

numbers = [5, 9, -6, -7, 0]

for number in numbers:
if number < 1:
for i in range(2, number):
if (number % i) == 0:
break
else:
print(number)

sahilpimpari
Автор

#programizchallenge


for number in numbers:
if number >0:
print(number)

abhishek____
Автор

# Programizchallenge day4
my_list = [1, 2, 3]
for i in my_list:
if i == 1 or i == 2:
continue
print(i)

priyathamguda
Автор

#programizchallenge Day2
number = 100
)sqrt = number ** 0.5
print("square root:", sqrt)

shubhb
Автор

DAY TWO CHALLENGE :


import math

num = 100

Sqrt_num = math.sqrt(num)
print("The square root of the 100 is", Sqrt_num)

#programizchallenge

#python #programming #learnpython #programizpro #challenges #pythonchallenges #pythonsofinstagram #pythonprogramming #learnprogramming

chiragsuthar
Автор

numbers = [5, 9, -6, -7, 0]
for number in numbers:
if number > 0 :
print(number)

#programizchallenge

bumpassbed
Автор

numbers = [5, 9, -6, -7, 0]  

for number in numbers:  
if number > 0 :  
print(number)  
# Hello team I am class 11 student do I do not have linkedIn account hope you understand
# programizchallenge

shubhb
Автор

#programizchallenge Day 3
my_string = "python"
reversed = my_string[::-1]
print(reversed)

sang_froid
Автор

day 5 challenge:

input_string = input()
num_list = input_string.split()
print(len(num_list))
#programizchallenge

sakshisingh
Автор

#programizchallenge Day 4

my_list = [1, 2, 3]
print(my_list[-1])

sang_froid
Автор

#programizchallenge Day 2

num = 100
sqrt = num ** 0.5
print(sqrt)

sang_froid
Автор

Plz core java bhi sikhaiye naa plz plz plz

radhawaghmare
Автор

I'm a winner how I take advantage of application

VishalSingh-uwne
Автор

numbers=[5, 9, -6, -7, 0]
for number in numbers:
if number>=0:
print(number)

sukhendralodhi
Автор

#programizchallenge
numbers = [5, 9, -6, -7, 0]
for number in numbers:
if number > 0:
print(number)

georg
Автор

#programizchallenge

numbers = [5, 9, -6, -7, 0]
for number in numbers:
if number > 0:
print(number)

ytjhjfghfsghfhfsgh