Solve any Series Program in Python

  Рет қаралды 45,262

Simply Coding

Simply Coding

Күн бұрын

Пікірлер: 50
@charlesregan9917
@charlesregan9917 Күн бұрын
I love it when you say "your code just goes for a toss".
@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
@dishaprashar7070
@dishaprashar7070 Жыл бұрын
Your way of explaining codes is just very commendable, thanks for such good explanation 😭
@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
@haimanotbeka2196
@haimanotbeka2196 Жыл бұрын
Other KZbin teachers can't teach the logic behind programming.they just put the code as written
@jagadeshkollu1211
@jagadeshkollu1211 Жыл бұрын
Thank you mam ur vedios made coding eassy for me
@sibaprasadsahu1485
@sibaprasadsahu1485 10 ай бұрын
Simply outstanding....
@sauravkashyap7763
@sauravkashyap7763 3 жыл бұрын
Good questions.. Keep up the good work
@salonichaurasia885
@salonichaurasia885 3 жыл бұрын
Very nice video.... Thankyou so muchhh
@naft2
@naft2 11 ай бұрын
Thank you very much miss ❤😊
@sujeetprasad48
@sujeetprasad48 3 жыл бұрын
very nice explanation madam....
@Prajju_18
@Prajju_18 4 ай бұрын
Super mam❤
@monoswiray9618
@monoswiray9618 3 жыл бұрын
Very well done 👍
@vidyasmiley5445
@vidyasmiley5445 2 жыл бұрын
thank you its easy way to learn
@P.Lokeshreddy-t6p
@P.Lokeshreddy-t6p 16 күн бұрын
Thnx u so much 😊
@saivaddi7549
@saivaddi7549 2 жыл бұрын
Thank You so much please do more videos
@humnasarmad5276
@humnasarmad5276 11 ай бұрын
what do we enter they ask to enter value of x?
@achuthayyil3017
@achuthayyil3017 2 жыл бұрын
Nice class mam
@KikoAkamiKio
@KikoAkamiKio 8 ай бұрын
Thank you so so much
@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)
@darshanlal4707
@darshanlal4707 Жыл бұрын
Thank you
@gameplease408
@gameplease408 8 ай бұрын
maam but what if n is not given
@vedavyasjeedevarakonda7248
@vedavyasjeedevarakonda7248 Жыл бұрын
Mam no temperature conversion ... link mam...🙏
@tilkesh
@tilkesh Жыл бұрын
Excellent !!!!!!
@rattatime-bro
@rattatime-bro Жыл бұрын
What we have to write in place of term
@deepanshu7801
@deepanshu7801 2 жыл бұрын
Mam how to install maths library in vs code please tell
@monsieurLDN
@monsieurLDN 9 ай бұрын
Import numpy
@sairamexcellent825
@sairamexcellent825 2 жыл бұрын
Great
@chemistrywallahiit9377
@chemistrywallahiit9377 2 жыл бұрын
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 2 жыл бұрын
@@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 2 жыл бұрын
Enter Number of Term 6 Series are 2 22 222 2222 22222 222222 Series Sum = 246912
@redtt9036
@redtt9036 2 жыл бұрын
@@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
@Srijafashions
@Srijafashions 2 жыл бұрын
@@sweety2630 😀
@001-cm-johnprakash4
@001-cm-johnprakash4 2 жыл бұрын
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 2 жыл бұрын
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)
@surajitpal1171
@surajitpal1171 7 күн бұрын
❤❤❤❤❤❤❤❤‍🩹❤‍🩹❤‍🩹❤‍🩹 Thank you for such explanation of logic behind coding
@chemistrywallahiit9377
@chemistrywallahiit9377 2 жыл бұрын
How to contact mam... please please...i can pay fee also🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@SimplyCoding
@SimplyCoding 2 жыл бұрын
You can contact is at info@simplycoding.in
How to solve Square and Hollow pattern programs in Python
17:29
Simply Coding
Рет қаралды 96 М.
Solve any number program in Python.
16:53
Simply Coding
Рет қаралды 21 М.
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 16 МЛН
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 20 МЛН
Real Man relocate to Remote Controlled Car 👨🏻➡️🚙🕹️ #builderc
00:24
When u fight over the armrest
00:41
Adam W
Рет қаралды 32 МЛН
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 1 МЛН
Solve any series program in Java - Part 1
24:12
Simply Coding
Рет қаралды 99 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
Python Program #35 - Multiply Two Matrix in Python
8:01
Programming For Beginners
Рет қаралды 32 М.
Linear Regression From Scratch in Python (Mathematical)
24:38
NeuralNine
Рет қаралды 183 М.
26 - Sum of Series Programs in Python Language
25:09
Learn Computer Programming
Рет қаралды 26 М.
Solve any Number Pattern program in Python
20:14
Simply Coding
Рет қаралды 232 М.
5 Math Skills Every Programmer Needs
9:08
Sahil & Sarra
Рет қаралды 1,1 МЛН
Python Decorators in 15 Minutes
15:14
Kite
Рет қаралды 452 М.
How To Think Like A Programmer
1:00:07
Coding Tech
Рет қаралды 2,1 МЛН
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 16 МЛН