Pisay Online E-Learning System using PHP/MySQL
The Snake Game Using JavaScript
Covid-19 Mobile Tracker App (Coronavirus Tracker 2020)
Since Google Playstore and IOS Appstore prohibited from putting an app with regards to coronavirus updates because of misinformation. Today, I was able to finish my creation with this Corona Tracker Mobile app that will keep us updated with the current cases of Covid-19 around the world and also to our beloved country. The app uses an API of the World Health Organization, so all of the Covid-19 instances around the globe are in real-time, and this will avoid misinformation.
NumPy Slicing Arrays
In this tutorial you will learn:
- NumPy Array Slicing
- 1-D NumPy Array Slicing
- 2-D NumPy Array Slicing
NumPy Array Slicing
NumPy Accessing Arrays
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.
NumPy Array Creation
In this tutorial you will learn:
- NumPy Array
- Dimensions of NumPy Array
- Common Functions of NumPy Array
NumPy Array
Python Numpy
In this tutorial you will learn:
- Numpy Introduction
- Numpy Installation
- Uses of Numpy
Numpy Introduction
Python File Writing
In this tutorial you will learn:
- File Writing Modes
- File Writing in Python
- Deleting a File
File Writing Modes
In Python we have the ‘w,’ ‘a’ and ‘+’ for writing to a file. For appending data to an already written file we use ‘a’
Python File Reading
In this tutorial you will learn:
- File Handling
- File Handling in Python
File Handling
File Handling is an important concept to cover while learning any programming language. We need file handling to create, read, update or delete files. One of the biggest benefits of handling a file is that we can arrange data any way we want without requiring a specific template to follow. But using files for storing data works best for only small datasets. For larger datasets we may need to use a database.