Questions tagged [expand]

Expand: as in collapsible views. They take more area, and give full detail, links, composite view, only when expanded. These can be Tree-View, Hide-able divisions, Popup-up screens, Combo-boxes and so on.

Expand: as in collapsible views. They take more area, and give full detail, links, composite view, only when expanded. These can be Tree-View, Hide-able divisions, Popup-up screens, Combo-boxes and so on.

1098 questions
-4
votes
1 answer

Is there any way in Python to reduce/expand my code similar to the R function of "{ }"?

I have written quite a complex program in Python 3.7. However I am looking for a way to reduce (and later on expand again) my already functional functions. So that I don't have to scroll over 200 lines of code whenever I want to get back to the…
Yannik Suhre
  • 724
  • 5
  • 21
-4
votes
4 answers

How can I expand List capacity in Python?

read = open('700kLine.txt') # use readline() to read the first line line = read.readline() aList = [] for line in read: try: num = int(line.strip()) aList.append(num) except: print ("Not a number in line " +…
Ali Kahya
  • 1
  • 1
  • 7
-5
votes
3 answers

I need help solving this code in C, please

My problem.. a.) Create a float array using memory allocation to store the GPA scores of 10 students. Assign values to it (your choice) b.) Find the maximum GPA in this array. c.) Write the contents of this array to a file alloc.txt d.) Expand the…
1 2 3
73
74