This repository was archived by the owner on Jan 24, 2024. It is now read-only.
JarheadCodes/SE_Website
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
#Variable input example to API code ''' Address1 = "4800 Calhoun Rd" Address2 = "" City = "Houston" State = "TX" ZipFive = "77004" print(validate(Address1, Address2, City, State, ZipFive)) # Should return True City = "Dallas" print(validate(Address1, Address2, City, State, ZipFive)) # Should return False, city is wrong