""" Name: [TODO: FILL THIS IN!] Program: homework1.py Description: This is my networking homework1 assignment to get some basic networking information from the student.cs.uni.edu server. You need to test and run this program on student.cs.uni.edu, not your own laptop (although it should work there, too.) """ #Some helpful libraries import socket import os import time hostname = '' #TODO - FILL IN CODE TO FIND hostname IP_addr = '' #TODO - FILL IN CODE TO FIND IP_addr timestamp = time.asctime(time.localtime()) print('This computer name is: '+hostname) print('This IP address is: '+IP_addr) print('Timestamp: ',timestamp)