Posted by admin at January 18, 2022
Visual Studio Code is a source-code editor made by Microsoft for Windows, Linux and macOS. Features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git. Wikipedia General: Ctrl+Shift+P, F1 Show Command Palette Ctrl+P Quick Open, Go to File… Ctrl+Shift+N New window/instance Ctrl+Shift+W Close window/instance Ctrl+, […]
ContinuePosted by admin at July 18, 2021
What Is a Leap Year? Leap years are years where an extra, or intercalary, day is added to the end of the shortest month, February. The intercalary day, February 29, is commonly referred to as leap day. Leap years have 366 days instead of the usual 365 days and occur almost every four years. Why […]
ContinuePosted by admin at July 6, 2021
The Armstrong number definition is the number in any given number base, which forms the total of the same number, when each of its digits is raised to the power of the number of digits in the number. For example, using a simple number 153 and the decimal system, we see there are 3 digits in it. […]
ContinuePosted by Supriya Khattar at May 2, 2021
THE VALUE OF DATA AND DATABASES Many of the actions you make during the day become data for organisations to use for there own profit and learning.Using an automated teller machine, filling out a form for a driver’s licence, orderings book on the internet, booking a flight on an airline – all become digitised data […]
ContinuePosted by admin at May 28, 2020
String literals in python are surrounded by either single quotation marks, or double quotation marks. The following example shows a string contained within 2 quotation marks. We can also use single quotation marks: # Use single quotation marks for defining string: A string can be a combination of spaces and digits: # Digitals and spaces […]
ContinuePosted by admin at April 28, 2020
Jupyter Notebooks provide a balance of jotting down important summary information along with proving a live code development environment where we can write and run python code. working in notebook cells Markdown cells display text in a web page format. Markdown is code that formats the way the cell displays (this cell is Markdown) Code cells contain […]
ContinuePosted by admin at March 11, 2020
Introduction Like all high-level languages, Python is easy to read, takes less time to write, and is portable. This versatile programming language has two versions: Python 2 and Python 3. Wiki says: Python 2.x is legacy, Python 3.x is the present and future of the language. That is, Python 2 is no longer in development […]
ContinuePosted by admin at November 6, 2019
Say “Hello” to the world in Python Hi friends this is the simple introduction to python, in this post I try to explain what python is and how to write your first program in python. When learning a new programming language, it is customary to start with an “hello world” example. As simple as it […]
Continue