programming languages for beginners

Simple Market Management System in C++ Free Source Code

Submitted by razormist on
Simple Market Management System in C++ Free Source Code The Simple Market Management System in C++ is a desktop application coded in a C++ programming language. The project contains simple functionality that can manage the market transaction. This project was built to be able to transact the billing of the market sales. This will make it easier to organize the listing of all the items. This Simple

Employee Database Management System in C++ Free Source Code

Submitted by razormist on
Employee Database Management System in C++ Free Source Code The Employee Database Management System in C++ is a desktop application coded in a C++ programming language. The project contains different coding scripts be able to manage the employee records. This project was created so that it could help you manage the recording of all the employees within the company. This will make your task faster

NumPy Accessing Arrays

Submitted by moazkhan on

In this tutorial you will learn:

  • Access NumPy Array
  • Accessing Arrays with Negative Index

Access NumPy Array

The elements of NumPy Array can be accessed by indexing, it’s very similar to accessing an element in an array. We already know that the index of an array start with zero.

Example

Access a 1-D array is very simple and straight forward we just need to pass the index in square brackets and print the value.