Question: How do you write this in Python? A list of programming languages named language_list is given to you as a list of strings. Write a
How do you write this in Python?

A list of programming languages named language_list is given to you as a list of strings. Write a for loop with a break statement and print out the index of an element in language_list that is the same as 'Python' . Please note that you don't have to declare language_list , as it is already given. Sample Input 1: Python, Java, C++ Sample Output 1: Sample Input 2: R, Fortran, Python, SQL Sample Output 2: 2 Correct answer from 21 learners Write a program, test using stdin stdout Total 27% of tries are correct Time limit: 15 seconds Memory limit: 256 MB 1 #language_list is already declared 2 3 4 5 6
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
