#out put
2
4
6
8
we have four even numbers
#write a code for the above out put
https://t.me/zethioprograming
2
4
6
8
we have four even numbers
#write a code for the above out put
https://t.me/zethioprograming
π3
Forwarded from Bitanya
def even(n):
ctr=0
for i in range (1,n):
if i%2==0:
ctr +=1
print(i)
print(fβwe have {ctr} even numbersβ)
even(10)
ctr=0
for i in range (1,n):
if i%2==0:
ctr +=1
print(i)
print(fβwe have {ctr} even numbersβ)
even(10)
Forwarded from α΄Κα΄α΄α΄
Leetcode with dani
def even(n): ctr=0 for i in range (1,n): if i%2==0: ctr +=1 print(i) print(fβwe have {ctr} even numbersβ) even(10)
n = int(input('number: '))
total = 0
for i in range(2,n,2):
print(i)
total +=1
print(f'we have {total} even numbers')
total = 0
for i in range(2,n,2):
print(i)
total +=1
print(f'we have {total} even numbers')
write a program that generate 7 random number in the form of list from one ab to 9.
from the comments
#in the form of list
import random
def easy():
lis = []
i = 0
while i < 7:
lis.append(random.randint(1,9))
i+=1
print(lis)
easy()
#in the form of list
import random
def easy():
lis = []
i = 0
while i < 7:
lis.append(random.randint(1,9))
i+=1
print(lis)
easy()
write a program that count number of odd number in the given number.
example:- input=3687 .#output=2
example:- input=3687 .#output=2
Leetcode with dani
write a program that count number of odd number in the given number. example:- input=3687 .#output=2
n=int(input('number:'))
num=0
if n < 0:
n=-n
while n > 0:
no=n%10
if no % 2 != 0:
num+=1
n=n//10
print(num)
num=0
if n < 0:
n=-n
while n > 0:
no=n%10
if no % 2 != 0:
num+=1
n=n//10
print(num)
π3
β€βπ₯3π2
Anonymous Quiz
13%
(3,2,3)
53%
(3,(2,3))
15%
(T1,2,3)
18%
error
Forwarded from πͺπΉEthio Apps Store π (πΖ²DΝ©Ρ¦ΖΖΡ¦β΄Ό)
Python_4.2.21_Pro.apk
14.5 MB
π3
kemejemria jmro python memar mefelgu sewoch ke first message gemrachu mayet techlalachu keza betechemari be mangnawm seat erdata kefelegachu conatct argugn https://t.me/zprogramming_bot
β€βπ₯7
πͺπΉEthio Apps Store π
Python_4.2.21_Pro.apk
be slk lemetemaru kesr yalwn tetekemu yelayegnaw kalseralachu
Forwarded from Leetcode with dani
Pydroid 3_6.4_arm_premium.apk
53.5 MB
https://t.me/+m835nLa3A0c2MjBk groupun yaltekelakelachu join argu
Telegram
leetcoders
Youβve been invited to join this group on Telegram.
#code_challenge write a code for a Given a string containing just the characters '(', ')', '{', '}', '[', and ']', determine if the input string is valid. An input string is valid if:
Open brackets must be closed by the same type of brackets.
Open brackets must be closed in the correct order
Open brackets must be closed by the same type of brackets.
Open brackets must be closed in the correct order