Question: Why wont this simple python3 code work to print the ip address. import ipaddress ipInterface = ipaddress.ip_interface('192.168.5.12/24') print(ipInterface) from terminal: AttributeError: module 'ipaddress' has no
Why wont this simple python3 code work to print the ip address.
import ipaddress
ipInterface = ipaddress.ip_interface('192.168.5.12/24') print(ipInterface)
from terminal:
AttributeError: module 'ipaddress' has no attribute 'ip_interface'
I'm just starting to learn python/networking so I'm sure it's simple but I followed my lecture exactly and it's erroring
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
