TheTechWorld
-
Pandas Basics # Python
Python 3 comes with different libraries and they offer some really cool references. One of them is Pandas. It is an open source, BSD licenced library providing which provides high performance, easy to use data structures and data analysis for the Python programming language. Let us now try to understand one of the codes that Continue reading
-
Data Science – Introduction #DS
Data in this world is being generated at rates higher than ever before. With the coming of digital world, there is huge amount of data, the data that is being generated and then further being stored. So, most of the organization have huge amount of data that is present with them, but most of them Continue reading
-
List Vs Tuples
Data types are one of the most fundamental of the things of any programming language. After all, it is in these data types, that we do store the data, and what possibly is more important than data. It is depending on the data, that the data types do get decided. In this post of ours, Continue reading
-
Password Validations #Pythonic
Password validations is something that is pretty common in most of all the applications that are built right? This time we are looking at some validations for password using Python codes. Below is the lambda function to test for the validity of password. password = lambda x : len(x) > 5 and len(x) < 10 Continue reading
-
Duplicates in Python #Pythonic
Problem Statement – Given a word you need to check for the occurrence of an alphabet in the word. If the count of the alphabet is greater than 1, it has to be replaced with “)”, else it has to be replaced with “(“. Let us see the sample answer to the above question – Continue reading
