51716/finding-local-ip-addresses-using-python-s-stdlib
import socket socket.gethostbyname(socket.gethostname())
This won't work always (returns 127.0.0.1 on machines having the hostname in /etc/hosts as 127.0.0.1), a paliative would be what gimel shows, use socket.getfqdn() instead.
Hello @kartik, Try this out: import socket s = socket.socket(socket.AF_INET, ...READ MORE
Only in Windows, in the latter case, ...READ MORE
The time.time() function returns the number of seconds since ...READ MORE
DynamoDB does not autogenerate the ID when ...READ MORE
suppose you have a string with a ...READ MORE
You can also use the random library's ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
Enumerate() method adds a counter to an ...READ MORE
is is used for identity testing and ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.