No video

Solve any Series Program in Python

  Рет қаралды 40,812

Simply Coding

Simply Coding

Күн бұрын

Пікірлер: 47
@swarnima11tripathi96
@swarnima11tripathi96 2 жыл бұрын
Thanks alot . tomorrow is my practical of python and to be honest I was sure that I'll be not able to complete these series programs....but you did it for me .thanks once again ☺️
@raihaansamad9519
@raihaansamad9519 2 жыл бұрын
O Level ?
@tushant2626
@tushant2626 2 жыл бұрын
Mera bhi
@KeshavSharma-tv3it
@KeshavSharma-tv3it 2 жыл бұрын
thank you so so so much , i was not understanding in school and found the best video, please post more of python
@dishaprashar7070
@dishaprashar7070 Жыл бұрын
Your way of explaining codes is just very commendable, thanks for such good explanation 😭
@user-rr9ci5pp1s
@user-rr9ci5pp1s Ай бұрын
Super mam❤
@haimanotbeka2196
@haimanotbeka2196 Жыл бұрын
Other KZfaq teachers can't teach the logic behind programming.they just put the code as written
@sauravkashyap7763
@sauravkashyap7763 2 жыл бұрын
Good questions.. Keep up the good work
@salonichaurasia885
@salonichaurasia885 2 жыл бұрын
Very nice video.... Thankyou so muchhh
@naft2
@naft2 8 ай бұрын
Thank you very much miss ❤😊
@jagadeshkollu1211
@jagadeshkollu1211 Жыл бұрын
Thank you mam ur vedios made coding eassy for me
@sibaprasadsahu1485
@sibaprasadsahu1485 7 ай бұрын
Simply outstanding....
@vidyasmiley5445
@vidyasmiley5445 2 жыл бұрын
thank you its easy way to learn
@sujeetprasad48
@sujeetprasad48 2 жыл бұрын
very nice explanation madam....
@monoswiray9618
@monoswiray9618 2 жыл бұрын
Very well done 👍
@saivaddi7549
@saivaddi7549 2 жыл бұрын
Thank You so much please do more videos
@user-ys2ko6uw9x
@user-ys2ko6uw9x 5 ай бұрын
Thank you so so much
@achuthayyil3017
@achuthayyil3017 2 жыл бұрын
Nice class mam
@darshanlal4707
@darshanlal4707 11 ай бұрын
Thank you
@rajkumarandekar416
@rajkumarandekar416 2 жыл бұрын
how to get last digit will be exponential like 193 , 194 in single line 19**3 and 19**4 ?
@SimplyCoding
@SimplyCoding 2 жыл бұрын
math.pow(n/10,n%10)
@gameplease408
@gameplease408 5 ай бұрын
maam but what if n is not given
@humnasarmad5276
@humnasarmad5276 8 ай бұрын
what do we enter they ask to enter value of x?
@tilkesh
@tilkesh Жыл бұрын
Excellent !!!!!!
@rattatime-bro
@rattatime-bro 10 ай бұрын
What we have to write in place of term
@vedavyasjeedevarakonda7248
@vedavyasjeedevarakonda7248 Жыл бұрын
Mam no temperature conversion ... link mam...🙏
@sairamexcellent825
@sairamexcellent825 2 жыл бұрын
Great
@deepanshu7801
@deepanshu7801 2 жыл бұрын
Mam how to install maths library in vs code please tell
@monsieurLDN
@monsieurLDN 6 ай бұрын
Import numpy
@chemistrywallahiit9377
@chemistrywallahiit9377 Жыл бұрын
How to contact mam... please please...i can pay fee also🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@haimanotbeka2196
@haimanotbeka2196 Жыл бұрын
❤❤❤❤❤
@hamdanfareed
@hamdanfareed Жыл бұрын
🗿🍷🔥
@hamdanfareed
@hamdanfareed Жыл бұрын
🥶
@azvidvlog9661
@azvidvlog9661 2 жыл бұрын
solve this series model 2,22,222,2222,22222,222222,............................ nth
@SimplyCoding
@SimplyCoding 2 жыл бұрын
Please use the pattern program to solve this. You just need to print comma instead of newline at the end of each line.
@hemu.shorts.771
@hemu.shorts.771 Жыл бұрын
@@SimplyCoding num=int(input("Enter Number of Term ")) s=0 sum1=0 print("Series are ",end =" ") for i in range(0,num): s=s*10+2 print(s,end=" ") sum1=sum1+ s print() print("Series Sum = ",sum1)
@hemu.shorts.771
@hemu.shorts.771 Жыл бұрын
Enter Number of Term 6 Series are 2 22 222 2222 22222 222222 Series Sum = 246912
@redtt9036
@redtt9036 Жыл бұрын
@@hemu.shorts.771 end ke baad me agar + laga dete to or bhi accha dikhta bro par thanks a lot accha laga tumhara code mujhe
@SureshKumar-sz3xf
@SureshKumar-sz3xf 2 жыл бұрын
x = 2 n= 5 S = 2^1 - 2^3 + 2^5 - 2^7 + 2^9 = 410 plz anyone write the code python for loop
@sweety2630
@sweety2630 2 жыл бұрын
are you from nextwave?
@lakkusupriya9166
@lakkusupriya9166 2 жыл бұрын
did you execute the code? if not I can help you
@HomeremediesDG
@HomeremediesDG 2 жыл бұрын
@@sweety2630 😀
@001-cm-johnprakash4
@001-cm-johnprakash4 Жыл бұрын
sum=0 a=1 n=5 for i in range(1,n+1): if(i%2==0): sum-=2**a else: sum+=2**a a+=2 print(sum)
@001-cm-johnprakash4
@001-cm-johnprakash4 Жыл бұрын
sum=0; a=1; n=5 for i in range(1,n+1): if i%2!=0: sum+=2**a else: sum-=2**a a+=2 print(sum)
@chemistrywallahiit9377
@chemistrywallahiit9377 Жыл бұрын
How to contact mam... please please...i can pay fee also🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@SimplyCoding
@SimplyCoding Жыл бұрын
You can contact is at info@simplycoding.in
How to solve Square and Hollow pattern programs in Python
17:29
Simply Coding
Рет қаралды 87 М.
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 928 М.
ISSEI & yellow girl 💛
00:33
ISSEI / いっせい
Рет қаралды 25 МЛН
娜美这是在浪费食物 #路飞#海贼王
00:20
路飞与唐舞桐
Рет қаралды 3,9 МЛН
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН
Пройди игру и получи 5 чупа-чупсов (2024)
00:49
Екатерина Ковалева
Рет қаралды 4,2 МЛН
Solve any series program in Java - Part 1
24:12
Simply Coding
Рет қаралды 92 М.
I run untested, viewer-submitted code on my 500-LED christmas tree.
45:17
Solve any number program in Python.
16:53
Simply Coding
Рет қаралды 19 М.
How to solve any sum of series program with nested loops
17:40
Simply Coding
Рет қаралды 26 М.
print() vs. return in Python Functions
4:48
Coding with Estefania
Рет қаралды 86 М.
Pandas Series in Python
20:20
Simply Coding
Рет қаралды 6 М.
Solve any Number Pattern program in Python
20:14
Simply Coding
Рет қаралды 208 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 831 М.
Solve Any Pattern Question With This Trick!
57:20
Kunal Kushwaha
Рет қаралды 2,4 МЛН
ISSEI & yellow girl 💛
00:33
ISSEI / いっせい
Рет қаралды 25 МЛН