HOME Digital/Technology Python DOS cd cls copy del dir DOS Commands echo ipconfig mkdir tasklist ren rmdir ping shutdown taskkill systeminfo move Windows DOS Commands Windows DOS

LIST REMOVE.ZIP

Microsoft Windows commands frquently used  

(updated at May 12, 2024)   191  
Windows Disk Operating System (DOS) is a command-line operating system developed by Microsoft Corporation.It was the foundation of the Windows operating system family and was used as the main ...

Python Arrays  

(updated at May 09, 2024)   92  
Arrays are used to store multiple values in one single variable: Access the Elements of an Array.You refer to an array element by referring to the index number. .The Length of an Array.Use the...

Python Dictionaries  

(updated at May 09, 2024)   113  
Dictionaries are used to store data values in key:value pairs.A dictionary is a collection which is ordered*,changeable and do not allow duplicates.Dictionaries are written with curly brackets...
Python Dictionaries

Python Sets  

(updated at May 09, 2024)   93  
Sets are used to store multiple items in a single variable.Set is one of 4 built-in data types in Python used to store collections of data,the other 3 are List,Tuple,and Dictionary,all with di...

Python Tuples  

(updated at May 09, 2024)   125  
Tuples are used to store multiple items in a single variable.Tuple is one of 4 built-in data types in Python used to store collections of data,the other 3 are List,Set,and Dictionary,all with ...
Python Tuples

Python Lists  

(updated at May 10, 2024)   89  
Lists are used to store multiple items in a single variable.Lists are one of 4 built-in data types in Python used to store collections of data,the other 3 are Tuple,Set,and Dictionary,all with...
Python Lists