Question: Exercise 2 What is the result of the following Python code fragments? Python Code Fragment 1: # with a string word = 'Greetings for char


Exercise 2 What is the result of the following Python code fragments? Python Code Fragment 1: # with a string word = 'Greetings for char in word: print(char, end=" ") Python Code Fragment 2: # with a list vitha alist = [1, 'b',300] for element in alist: print(element, end=" ") What is different between the Python code fragment in Exercise 1 and the Python code fragments in Exercise 2? Hint: Look at the sequence used in the for loops. Tepeliliom Exercise 1 Create a Python program by copying and pasting Python code fragment 1 below in a Python program. When we paste the fragments into a Python program, make sure the indentation remains as it is in the Python code fragment below. Execute it and see what happens: Python code fragment 1: for number in range(10): print (123) print("abc") for number in range (10): print(123) print("abc") What is the cause of the difference
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
