首页 > 解决方案 > bt.append(int(input(f"Enter burst time for process {i} ->"))) 它是我代码的第 11 行,当我运行代码时它显示无效语法

问题描述

当我运行 FCFS 调度程序时,它指出了一个错误

bt.append(int(input(f"Enter burst time for process: {i} ->")))

说语法错误

    #python code to implement FCFS CPU Scheduling

n = int(input("Enter number of processes:"))     
bt = []     # Burst Time 
wt = [0,0,0,0,0,0,0,0,0]     # Waiting Time
tat = [0,0,0,0,0,0,0,0,0,0]   # Turn around time

#Take input

for i in range (0,n):
    bt.append(int(input(f"Enter burst time for process: {i} ->")))
#Waitng time
for i in range(1,n):
    wt[i] = 0
    for j in range (0,i):
        wt[i] += bt[i]

# Turn around time

for i in range(0,n):
    tat[i] = wt[i] + bt[i]
print()
print("\t Process \t\t Burst Time \t\t Waitng Time \t\t Turn around time")    

for i in range(0,n):
    print(f"\t P[{i}] \t\t {bt[i]} \t\t  {tat[i]} ")

标签: pythonsyntax-error

解决方案


您需要使用格式方法:

"Enter burst time for process: {i} ->".format(i=i)

推荐阅读