python

Python numpy reshape() method for array reshaping

Python numpy reshape() method is used for reshaping arrays. This method can be used to convert arrays from one dimension to a different dimension.

Read
python

Python os.system() method explanation with example

Python os.system() method explanation with example. os.system() is used to execute a command and the output of the command is passed to the interpreter standard stream.

Read
flutter

How to remove the debug banner in Flutter apps in development mode

Learn how to remove the debug label or debug banner in Flutter applications in Debug mode. Removing this label is useful for showing demo of a flutter app.

Read
C++

C++ program to find the GCD of two numbers

C++ program to find the GCD of two numbers. GCD or HCF of two numbers is the largest of the two numbers that can divide both numbers.

Read
python

numpy.log() method explanation with examples

Python numpy.log() method is used to calculate the natural logarithm of a given number. This post will show you how to use numpy.log() with examples.

Read
flutter

Flutter TextField how to change the maximum and minimum lines

Learn how to change the maximum and minimum lines in a TextField to create a expandable TextField or auto grow TextField . Flutter TextFields has two properties called maxLines and minLines that can be used to change the maximum and minimum lines in a textfield.

Read
python

Python list remove() method

Python list remove() method is used to remove an item from a python list. This post will show how to use python list remove() method with example.

Read
python

Python list pop() method

Python list pop() method is used to remove and return an item from a python list. This post will show how to use python list pop() method with example.

Read
flutter

How to customize the textfield cursor in Flutter

Flutter program to show different properties to customize the textfield cursor. This example will show you how to change textfield cursor color, how to change height/width, corner radius etc.

Read
python

How to read excel data in python using xlrd

Python program to read excel data using xlrd. xlrd is a library for reading and writing data to excel files. This post will show you how to use xlrd with example.

Read