Answers for "python empty class"

1

python how to create empty class

#create empty class:

class Person:
  pass
Posted by: Guest on July-14-2021
0

create an empty array in java

public static void main(String args[])
{
    int array[] = new int[4];
    int number = 5, i = 0,j = 0;
    while (i<4){
        array[i]=number;
        i=i+1;
    }
    while (j<4){
        System.out.println(array[j]);
        j++;
    }
}
Posted by: Guest on February-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language