Write() in python
we learnt previously in c that write() takes 3 arguments
#include <unistd.h>
ssize_t write(int fd, const void *buf, size_t count);
fd is the file descriptor of the file or socket where the data will be written.
buf is a pointer to the buffer conta...
snowcodes.hashnode.dev1 min read