This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
process_queue = [] | |
total_wtime = 0 | |
n = int(raw_input('Enter the total no of processes: ')) | |
for i in xrange(n): | |
process_queue.append([])#append a list object to the list | |
process_queue[i].append(raw_input('Enter p_name: ')) | |
process_queue[i].append(int(raw_input('Enter p_arrival: '))) | |
total_wtime += process_queue[i][1] | |
process_queue[i].append(int(raw_input('Enter p_bust: '))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
process_queue = [] | |
total_wtime = 0 | |
n = int(raw_input('Enter the total no of processes: ')) | |
for i in xrange(n): | |
process_queue.append([])#append a list object to the list | |
process_queue[i].append(raw_input('Enter p_name: ')) | |
process_queue[i].append(int(raw_input('Enter p_arrival: '))) | |
total_wtime += process_queue[i][1] | |
process_queue[i].append(int(raw_input('Enter p_bust: '))) |