Posts by HIMANSHU ZAVERI

Author Biographical Info: Not available

Check for the standard password in Python using Sets

By HIMANSHU ZAVERI

In this post also we will check whether the password is in standard format or not in Python. But unlike the previous post, this time we will use sets and their in-built functions. .... Read More

Find a number repeating and missing in an array in Python

By HIMANSHU ZAVERI

In this post, we will find the number repeating and the number missing in an array in Python programming. You may encounter this problem in coding contests or competitive programmi.... Read More

Check whether password is in the standard format or not in Python

By HIMANSHU ZAVERI

In this post, we will check whether a password is in the standard format or not using regular expressions in Python. If you are new to regular expressions, then here is the link fo.... Read More

Introduction to regular expressions and a sample problem in Python

By HIMANSHU ZAVERI

This post will prove to be useful for those who wish to learn and kickstart with the Regular Expressions (REs or Regex) in Python Programming Language. In simple words, Regular Ex.... Read More

Check if a string is a valid IP address or not in Python using regular expression

By HIMANSHU ZAVERI

In this post, we will see how we can validate that a given string is a valid IP address (IPv4) or not in Python using regular expression (also knowns as REs or regex or regex patte.... Read More

Check if a string is a valid IP address or not in Python by the naive approach

By HIMANSHU ZAVERI

In this post, we are going to see how we can validate that a given string is a valid IP address(IPv4) or not in Python. This post will be helpful for beginners as we will accompli.... Read More