#software-development
Read more stories on Hashnode
Articles with this tag
I have been using this command but never knew what it actually meant For example: source ~/env/md/bin/activate "source" is a command in Unix-like...
Imagine you have a Linux system with multiple users, and you want to manage access to a specific directory called /project. You want to give some...
str and repr In Python, __str__ and __repr__ are special methods that provide a string representation of an object. These methods are defined within a...
>>>from datetime import date >>>now = date.today() >>>now datetime.date(2003, 12, 2) >>>now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of...
What's the difference between "import os" and "from os import *" and which should I adopt? In Python, both import os and from os import * are used to...
curl -Lso "hidden_4.pyc" "https://github.com/holbertonschool/0x02.py/raw/master/hidden_4.pyc" The command above is a curl command used to download a...