Found 34484 Articles for Programming

how to initialize a dynamic array in java?

radhakrishna
Updated on 24-Feb-2020 11:16:20

462 Views

Following program shows how to initialize an array declared earlier.Examplepublic class Tester {    int a[];    public static void main(String[] args) {       Tester tester = new Tester();       tester.initialize();    }    private void initialize() {       a = new int[3];       a[0] = 0;       a[1] = 1;       a[2] = 2;       for(int i=0; i< a.length ; i++) {          System.out.print(a[i] +" ");       }    } }Output0 1 2

How to concatenate byte array in java?

mkotla
Updated on 30-Jul-2019 22:30:21

2K+ Views

You ByteArrayOutputStream to write byte arrays and get the result using its toByteArray() method.import java.io.ByteArrayOutputStream; import java.io.IOException; public class Tester { public static void main(String[] args) throws IOException { byte[] a = { 1,2,3}; byte[] b = { 4,5,6}; ByteArrayOutputStream baos = new ByteArrayOutputStream(); baos.write(a); baos.write(b); byte[] c = baos.toByteArray(); for(int i=0; i< c.length ; i++){ System.out.print(c[i] +" "); } } }Output1 2 3 4 5 6

How to create a dynamic 2D array in Java?

Giri Raju
Updated on 24-Feb-2020 11:15:24

2K+ Views

If you wish to create a dynamic 2d array in Java without using List. And only create a dynamic 2d array in Java with normal array then click the below linkYou can achieve the same using List. See the below program. You can have any number of rows or columns.Exampleimport java.util.ArrayList; import java.util.List; public class Tester {    public static void main(String[] args) {       List rows = new ArrayList();       rows.add(new int[]{1, 2, 3});       rows.add(new int[]{1, 2});       rows.add(new int[]{1});       //get element at row : 0, column ... Read More

How to remove an element from an array in Java

Sreemaha
Updated on 24-Feb-2020 11:11:49

863 Views

Following example shows how to remove an element from array. Exampleimport java.util.ArrayList; public class Main {    public static void main(String[] args) {       ArrayList objArray = new ArrayList();       objArray.clear();       objArray.add(0,"0th element");       objArray.add(1,"1st element");       objArray.add(2,"2nd element");       System.out.println("Array before removing an element"+objArray);       objArray.remove(1);       objArray.remove("0th element");       System.out.println("Array after removing an element"+objArray);    } }OutputThe above code sample will produce the following result. Array before removing an element[0th element, 1st element, 2nd element] Array after removing an element[2nd element]

How to convert an object x to a string representation in Python?

Malhar Lathkar
Updated on 24-Feb-2020 09:54:15

206 Views

Most commonly used str() function from Python library returns a string representation of object.>>> no=100 >>> str(no) '100' >>> L1=[1,2,3,4] >>> str(L1) '[1, 2, 3, 4]' >>> d={'a': 1, 'b': 2, 'c': 3, 'd': 4} >>> str(d) "{'a': 1, 'b': 2, 'c': 3, 'd': 4}"However, repr() returns a default and unambiguous representation of the object, where as str() gives an informal representation that may be readable but may not be always unambiguous.>>> str(d) "{'a': 1, 'b': 2, 'c': 3, 'd': 4}" >>> repr(d) "{'a': 1, 'b': 2, 'c': 3, 'd': 4}" >>> repr(L1) '[1, 2, 3, 4]' >>> repr(no) '100'

How to create a complex number in Python?

Malhar Lathkar
Updated on 24-Feb-2020 10:04:52

129 Views

Complex number is made up of real and imaginary parts. Real part is a float number, and imaginary part is any float number multiplied by square root of -1 which is defined as j.>>> no=5+6j >>> no.real 5.0 >>> no.imag 6.0 >>> type(no) The resulting object is of complex data type. Python library also has complex() function, which forms object from two float arguments>>> no=complex(5,6) >>> no (5+6j) >>> no.real 5.0 >>> no.imag 6.0 >>> type(no)

How do we evaluate a string and return an object in Python?

Gireesha Devara
Updated on 23-Aug-2023 18:19:54

822 Views

By using the eval() function in python we can evaluate a string and return a python object. The eval() is a python built−In function that evaluates a string argument by parsing the string as a code expression. Syntax eval(expression[, globals[, locals]]) Parameters expression: It’s a string that will be evaluated as a Python expression. globals: An optional parameter, which is a dictionary containing global parameters. locals: An optional parameter, which is a dictionary containing local parameters. Return: Returns the result evaluated from the expression. If the string containing arithmetic expression If we pass a string ... Read More

How can I convert Python strings into tuple?

Gireesha Devara
Updated on 23-Aug-2023 18:08:29

3K+ Views

We can convert a python string into tuple by simply mentioning a comma (, ) after the string. This will treat the string as a single element to the tuple. Here our string variable “s” is treated as one item in the tuple, which can be done by adding the comma after the string. Example s = "python" print("Input string :", s) t = s, print('Output tuple:', t) print(type(t)) Output Following is the output of the above program Input string : python Output tuple: ('python', ) Using tuple() function Also we can use the tuple() function ... Read More

What does the Double Star operator mean in Python?

Gireesha Devara
Updated on 09-Sep-2023 15:22:05

7K+ Views

The double star/asterisk (*) operator has more than one meaning in Python. We can use it as a exponential operator, used as function *kwargs, unpacking the iterables, and used to Merge the Dictionaries. Exponential operator For numeric data the double asterisk (**) is used as an exponential operator. Let's take an example and see how the double star operator works on numeric operands. Example The following example uses double asterisks/star (**) to calculate “a to the power b” and it works equivalent to the pow() function. a = 10 b = 2 result = a ** b print("a**b = ", ... Read More

How to get the size of a list in Python?

Vikram Chiluka
Updated on 09-Sep-2023 15:32:03

5K+ Views

In Python, a list is an ordered sequence that can hold several object types such as integer, character, or float. In other programming languages, a list is equivalent to an array. In this article, we will show you how to get the size/length of a list in different ways using Python. Here we see 4 methods − Using len() function Using For Loop (Naïve Method) Using length_hint() function Using __len__() function Assume we have taken a list containing some elements. We will return the length/size of the given input list using different methods as specified above. Method 1: ... Read More

Advertisements