如何在字符串中添加数字?

问题描述 投票:0回答:1

我希望第一个输出是“输入进程1的突发时间”,而不是“进程0”。我该怎么做?

 num = int(input('Enter the number of processes: '))

    for i in range(num):
            b = input('Enter the burst time of process ' + str(i) + ': ')
            a = input('Enter the arrival time of process ' + str(i) + ': ')
python string output
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.