Whats the output of "for i in "hello world": print(i)" and why/how is this achieved

output is: "h", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d" each character being printed in a new lineA "for" loop is used to itterate over a string "hello world" and print each character, this works by "moving" variable "i" along the string, giving it a different character per every iteration of a loop and then asking to print the value its currently holding

Answered by Python tutor

2308 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

Create an algorithm that can be used as a guessing game. Make sure to import random at the start.


Describe both For-loops and While-loops and explain how you can simulate the effect of a for loop with a while loop with an example.


Using the shared code editor, write a recursive function for calculating a factorial of an input parameter.


Explain why creating a list of several instances of one element using something like my_list = [a] * 5 can result in strange behaviour


We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences