Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Validating IP Addresses Function
00:00
5 left

Validating IP Addresses Function

MediumPython

Problem

Write a function that checks for valid IP addresses.

For this exercise, treat an address as valid only when it is an IPv4 address in dotted-decimal notation. Return True for four numeric octets from 0 through 255, with no leading zeros except for the value 0; otherwise return False.

Use the signature def is_valid_ip(address):, where address is a string and the result is a boolean.

Constraints

  • 1 <= len(address) <= 100
  • The input contains printable characters
  • A valid address has exactly four decimal octets separated by periods
  • Each octet must be in the range 0 through 255
  • Leading zeros are not permitted except in the octet 0

Function Signature

def is_valid_ip(address):
Interviewer

Your question is Validating IP Addresses Function. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.