I will give Brainliest and 15 pts I really need helpppppppp
Write a for loop that uses the print function to display your first name exactly 5 times

Relax

Respuesta :

For i in range (5):
Print(“First Name”)

This is for python only

For C it’s:

for(i=1;i<=10;i++) {
console.log("your name");
}