recategorized by
436 views

1 Answer

Position:
Show:

Related questions

0 0 votes
1 1 answer
389
389 views
admin asked Jul 31, 2023
389 views
Q.17 What is the output of the following part of python program?\[\begin{array}{l}\mathrm{s}=\text { "india" } \\\mathrm{l}=0\end{array}\]for $\mathrm{x}$ in $\mathrm{s}$...
0 0 votes
1 1 answer
766
766 views
admin asked Jul 31, 2023
766 views
Q.18 Which of the following function in python is used to read keyboard input?Ans1. scanf2. input3. gets4. $\operatorname{cin}$Question ID : 630680278533Option 1 ID : 630...
0 0 votes
1 1 answer
414
414 views
admin asked Jul 31, 2023
414 views
Q.75 What is the output of the following part of Python program?c=0 while(c<=2): c=c+1 print("Hi")Ans1. Hi2. $\mathrm{Hi}$3. $\mathrm{Hi} \mathrm{Hi} $4. $\mathrm{Hi}$$\m...
0 0 votes
1 1 answer
150
150 views
sri321 asked Aug 26
150 views
What is the output of the below code snippet?result = 0 list1 = [10,20,30] list2 = [1,2] for num in range(len(list1)): for num in range(len(list2)): result += list1[num] ...