Know some languages, yet to learn python, it's next on my list. But I know enough of math, that there should be a way to just check if it's divisible by 2. cuz if it is, it's even elseif it's not, it's odd
2025-08-08 03:48:51
0
The big F :
for x in range(1, 101):
if x % 2 == 0:
print(f"{x} is Even")
else:
print(f"{x} is Odd")
2025-08-01 08:19:16
29
Mo Ahmed :
brooo u had to use elif instead of ifs!!
2025-05-13 00:57:05
47
a :
def isOdd(n):
if (n == 1) return true;
if (n == 0) return false;
return isOdd(n-2);
because all the cool programmers use recursion
2025-06-01 19:25:20
19
Abhh :
how about 1001? 😭
2025-05-10 23:01:38
441
00HT :
"if it works it works" ahh program 🧱🧱🧱
2025-05-25 05:55:43
303
System32 :
2025-08-19 11:04:47
138
iyad 🇲🇦 :
wait till bro discovers %
2025-10-18 19:08:25
34
solo :
you have a hidden talent bro keep it hidden 🔥
2025-08-27 10:46:04
27
Telemona :
Yandere dev ahh
2025-05-14 14:45:57
17
44 :
2025-09-10 19:51:32
31
prol_lex :
что за программист,
надо elif после if так быстрее будет работать
2025-05-19 05:12:52
101
Mr Berry🆘 :
яндере симулятор core:
2025-05-15 00:02:42
116
Mohamed A Mohamed :
الناس قبل اختراع الfor loop
2025-05-13 15:00:44
33
rorolb :
вот он, яндередев
2025-06-01 00:28:43
7
Mitchell Muttington :
Yandere Dev ahh Code 😭 🙏
2025-06-14 15:57:12
39
𝓐𝓵𝓲 𝓗𝓪𝓼𝓱𝓮𝓶 :
Earth Before Creating For loops :
2025-05-14 19:24:43
21
Даниил :
And if I mean -1 or even a string?
I need to add a fool check
2025-05-12 05:22:43
24
abdo_glad :
I thenk you need to [if(num>1000):print(“sorry we dont do this”) ]
2025-05-12 13:12:32
12
Ryan :
it's crazy that there is no easier way to do this...
2025-06-24 21:00:22
52
الزبير الزبيدي :
if num /2 ==0:
print("even")
else :
print("odd")
2025-05-23 19:03:32
14
To see more videos from user @takoyaki0482, please go to the Tikwm
homepage.