AKAishwarya Kashyupinobsesseddev.hashnode.dev·Apr 2, 2020ZIP in PythonZIP is a built-in function in Python. ZIP function maps the indexes that are same and returns a single iterator object. For example:a = (1,2,3) b= ('A','B','C') c = zip(a,b) print(list(c)) #OR print(tuple(c)) #OR print(dict(c)) #OR print(set(C)) You ...00
AKAishwarya Kashyupinobsesseddev.hashnode.dev·Mar 31, 2020Python Hackerrank challengesHey There, So I am up for some competitive coding on hackerrank. I have completed 60% of the python challenges. Hackerrank and other such websites are a good way to get the hang of the languange syntax and building up the logical thinking. I am curr...00
AKAishwarya Kashyupinobsesseddev.hashnode.dev·Mar 16, 2020A Newbie in pythonI noticed that most of the jobs in tech industry are getting automated. So I started learning python and I got totally obsessed with python programming language. I am completely a newbie in dev area. After my 9 hours job I try to spend atleast 2-3 h...00