Hey all Quickly question How is right way join list items on python? For instance in JS: var arr = ["a","b"] arr.join("") // output "ab" How do it in python?
Hey all I'm a bit confused, why I unable print Bar in this snippet? try: 0/0 except ZeroDivisionError: raise ValueError('Foo') except Exception as e: print('Bar...
Hi guys, I need help with an algorithm, I already tried some things but nothing looks right. What logic I can apply here? Basically I have a list with values that need be s...