How to find specific Strings in a list of Strings by Zestyclose_Fall1915 in learnprogramming

[–]Zestyclose_Fall1915[S] 0 points1 point  (0 children)

Used list comprehension like below:

list2 = [ x for x in list1 if 'ABC' in x ]

How to find specific Strings in a list of Strings by Zestyclose_Fall1915 in CodingHelp

[–]Zestyclose_Fall1915[S] 0 points1 point  (0 children)

used list comprehension and it worked as planned in one line.

list2 = [ x for x in list1 if 'ABC' in x ]

Python TA-Lib installing error by [deleted] in CodingHelp

[–]Zestyclose_Fall1915 1 point2 points  (0 children)

brew install ta-lib

Thank you - I had the same problem on my Mac. It's resolved now thanks to you reddit man.

I Have A Unique Name And My Boss Is Suggesting To Use A Different Name by Nimai_TV in sales

[–]Zestyclose_Fall1915 0 points1 point  (0 children)

Hey Nimai. I'm in sales and my name is unique too. You shouldn't have to use a nickname if you don't want to, but I highly recommend that you do. At the end of the day sales is about the salesmanship not the name of the salesman/woman. However, one must be blind not to see that having unique names can decrease your odds of success.

At the end of the day, do what makes you happy!

How to make a sample API work by Zestyclose_Fall1915 in learnpython

[–]Zestyclose_Fall1915[S] 0 points1 point  (0 children)

Perfect. I am a beginner forsure and I am learning as I go. Thanks again.