String Processing in Python: String to Integer

  Рет қаралды 13,365

LucidProgramming

LucidProgramming

Күн бұрын

Пікірлер: 39
@MrTheBroMoe
@MrTheBroMoe 6 жыл бұрын
Please keep up the content, I am learning so much from these videos!
@LucidProgramming
@LucidProgramming 6 жыл бұрын
Will do BroMoe :). Thanks for your comment!
@mightyprogrammer2899
@mightyprogrammer2899 2 жыл бұрын
i've never seen this type of content with such a great explaination. Thanks a lot man you really deserve respect🙌 i know you've been working on some project during the past couple of months. which is good, best wishes to you but is there any chance that you'll gonna make Data Structure and Algorithm videos. please let us know
@LucidProgramming
@LucidProgramming 2 жыл бұрын
Thank you! As always, your comments are very encouraging! Thank you for watching and for the kind words on my content. I really hope I can start putting out videos again. Cheers!
@subhashchaudhary7003
@subhashchaudhary7003 6 жыл бұрын
I saved it offline to do it practically ... Explained very nicely
@LucidProgramming
@LucidProgramming 6 жыл бұрын
Excellent. Good way to practice, Subhash. Thanks for watching!
@shahzan525
@shahzan525 5 жыл бұрын
Sir we want more data structure videos.....like which are useful in programming interview.... Thanks your videos are amazing....
@LucidProgramming
@LucidProgramming 5 жыл бұрын
Thank you! If you like my content, I've been working on some projects during the past couple of months. If you would like to stay up-to-date, please consider subscribing to my mail list. Also, if you haven't already, please consider subscribing! I really appreciate the support. I hope that the content I provide there will enhance the videos on my KZbin page. bit.ly/lp_email
@louielogn6117
@louielogn6117 4 жыл бұрын
Another awsome series have been done ^-^ thanx for your efforts
@shonnoronha
@shonnoronha 4 жыл бұрын
Done with your algorithms series , when are new videos coming can you please give an update ,eagerly waiting !
@shonnoronha
@shonnoronha 4 жыл бұрын
Btw, really good series , crystal clear explanation, enjoyed a lot , thanks a lot! For these videos .
@LucidProgramming
@LucidProgramming 4 жыл бұрын
Time has been limited these days, so my ability to commit to that has been minimal at best. I do have a Patreon link that I prioritize content there for if you want to put in a request: www.patreon.com/lucidprogramming
@Sachin-tk3og
@Sachin-tk3og 5 жыл бұрын
crystal clear explanation ,thank you so much
@LucidProgramming
@LucidProgramming 5 жыл бұрын
Thank you! If you like my content, I've been working on some projects during the past couple of months. If you would like to stay up-to-date, please consider subscribing to my mail list. Also, if you haven't already, please consider subscribing! I really appreciate the support, and if you want to support the channel, I do have a PayPal link (www.paypal.me/VincentRusso1) for donations that go directly to the creation of content on this channel. I hope that the content I provide there will enhance the videos on my KZbin page. bit.ly/lp_email
@edgarjeparchin2382
@edgarjeparchin2382 4 жыл бұрын
Hi, first of all great content. Also, are you planning to expand algorithm topic going foward?
@LucidProgramming
@LucidProgramming 4 жыл бұрын
Thanks, Edgar. I am, but my time has been limited these days. I hope to when I get around to it!
@edgarjeparchin2382
@edgarjeparchin2382 4 жыл бұрын
@@LucidProgrammingcompletely understandable. Again one of the best programming related content on the youtube in my option. Keep it up. Thanks.
@LucidProgramming
@LucidProgramming 4 жыл бұрын
@@edgarjeparchin2382 Really appreciate that and it motivates me to keep going. Thanks again! :)
@shilpamurabatte5673
@shilpamurabatte5673 5 жыл бұрын
Thanks for the clear explanation
@LucidProgramming
@LucidProgramming 5 жыл бұрын
Thank you! If you like my content, I've been working on some projects during the past couple of months. If you would like to stay up-to-date, please consider subscribing to my mail list. Also, if you haven't already, please consider subscribing! I really appreciate the support, and if you want to support the channel, I do have a PayPal link (www.paypal.me/VincentRusso1) for donations that go directly to the creation of content on this channel. I hope that the content I provide there will enhance the videos on my KZbin page. bit.ly/lp_email
@polavarapuvinayrahul5049
@polavarapuvinayrahul5049 4 жыл бұрын
Why did u stop uploading these are veryy helpful tutorials? Pls upload more content 🙏😇
@LucidProgramming
@LucidProgramming 4 жыл бұрын
Time and some personal things came up. However! I am going to start making more videos soon. I launched a Patreon page where viewers like yourself can suggest videos to make. In doing so you support the channel and get more content you love. Hope to make more videos soon :) www.patreon.com/lucidprogramming
@ahmedelmawrdy4381
@ahmedelmawrdy4381 2 жыл бұрын
hopping to have new algo playlist with a other content ( sliding window, .....)
@khaihoang7420
@khaihoang7420 5 жыл бұрын
num="123" num=list(num) def strtoint(num,s): if s==len(num): return int(num[s-1]) else: num[s]=int(num[s]) strtoint(num,s+1) for m in range(len(num)): num[m]=str(num[m]) return int("".join(num)) print(strtoint(num,0)) Can i solve it using recursion(i made use of built-in functions in this code, sr about that)
@ahmedelmawrdy4381
@ahmedelmawrdy4381 2 жыл бұрын
thanks a lot
@LucidProgramming
@LucidProgramming 2 жыл бұрын
Cheers! If you enjoyed and benefited from my content, please consider liking the video and subscribing to the channel for more content like this. If you would like to support the content creation on this channel please consider unblocking ads when watching my videos as this is how I support my time to make content. I hope to be putting out more similar videos soon!
@zouhairtheadventurer3440
@zouhairtheadventurer3440 6 ай бұрын
Keep going
@VinCEbluerex
@VinCEbluerex 5 жыл бұрын
this work in python 2.7?
@LucidProgramming
@LucidProgramming 5 жыл бұрын
Yes, have you tried running it?
@sierz.stradtord7883
@sierz.stradtord7883 5 жыл бұрын
I have just tested this, and it works perfectly fine on python 2.7
@LucidProgramming
@LucidProgramming 5 жыл бұрын
@@sierz.stradtord7883 Thanks for verifying!
@technologs8849
@technologs8849 5 жыл бұрын
how to convert 'W1234' into int. number should be extracted.
@LucidProgramming
@LucidProgramming 5 жыл бұрын
What have you tried to solve this problem?
@technologs8849
@technologs8849 5 жыл бұрын
@@LucidProgramming i did it thank you
@LucidProgramming
@LucidProgramming 5 жыл бұрын
@@technologs8849 Thanks! I appreciate the support!
@alexkhalamsky3715
@alexkhalamsky3715 5 жыл бұрын
Its unfair: we are still cheating .we do not use int built in function but so easily use 2 built in functions instead:ord and char! What do i offer? Break it down to the molecular level and create a dictionary of 10 first digits with corresponding number keys .thus you really break it d down.
@LucidProgramming
@LucidProgramming 5 жыл бұрын
The description says not to use the built-in "int" function. It doesn't say you cannot use "ord" or "char".
String Processing in Python: Integer to String
20:39
LucidProgramming
Рет қаралды 7 М.
String Processing in Python: Spreadsheet Encoding
12:51
LucidProgramming
Рет қаралды 4,5 М.
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 60 МЛН
Players push long pins through a cardboard box attempting to pop the balloon!
00:31
Thank you Santa
00:13
Nadir Show
Рет қаралды 36 МЛН
String Processing in Python: Check Permutation
14:32
LucidProgramming
Рет қаралды 7 М.
F-strings In Python: Everything You Need To Know
23:29
ArjanCodes
Рет қаралды 50 М.
Binary Search in Python: Integer Square Root
12:36
LucidProgramming
Рет қаралды 9 М.
String Processing in Python: Is Palindrome Permutation
11:59
LucidProgramming
Рет қаралды 7 М.
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 572 М.
Binary Search in Python: Find Closest Number
22:50
LucidProgramming
Рет қаралды 18 М.
How To Use Functions In Python (Python Tutorial #3)
14:55
CS Dojo
Рет қаралды 2,4 МЛН
String Processing in Python: Is Unique
11:54
LucidProgramming
Рет қаралды 8 М.
String Processing in Python: Look-and-Say Sequence
11:34
LucidProgramming
Рет қаралды 19 М.
Python Decorators in 15 Minutes
15:14
Kite
Рет қаралды 452 М.
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 60 МЛН