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

LIST REMOVE.ZIP

Microsoft Windows commands frquently used  

updated at May 12, 2024   195  
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 operating system for personal computers during the 1980s and ear...

Python Lists  

updated at May 10, 2024   98  
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 different qualities and usage.Lists are created using square br...
Python Lists

Python Sets  

updated at May 09, 2024   397  
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 different qualities and usage.A set is a collection which is unord...

Python Tuples  

updated at May 09, 2024   726  
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 different qualities and usage.A tuple is a collection which is o...
Python Tuples

Python Dictionaries  

updated at May 09, 2024   819  
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,and have keys and values:Dictionary Items.Dictionary items are ...
Python Dictionaries

Python Arrays  

updated at May 09, 2024   397  
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 len() method to return the length of an array (the number of el...