简体   繁体   中英

Is using for loop faster for the computer than repeated instructions?

What I mean is which would be faster for a computer to execute.

The following code is in python3.

for in range(10):
    print('billy bob')

OR

print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')
print('billy bob')

if you don't understand what I mean, just say in comments, ill try to answer.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM