নিচের কোনটি পাইথনে সঠিক ইন্ডেন্টেশন বোঝায়?if x == 5: print("Value is five")if x == 5: print("Value is five")if x == 5:print("Value is five")if(x == 5): print("Value is five")
Question
নিচের কোনটি পাইথনে সঠিক ইন্ডেন্টেশন বোঝায়?if x == 5: print("Value is five")if x == 5: print("Value is five")if x == 5:print("Value is five")if(x == 5): print("Value is five")
Solution
পাইথনে সঠিক ইন্ডেন্টেশন বোঝায় নিম্নলিখিত অপশন:
if x == 5: print("Value is five")
Similar Questions
What will be the output after the following statements?x = 5 if x > 15: print('yes') elif x == 15: print('equal') else: print('no')Options15equalnoyes
Which of the following is a valid if statement in Python?Answer areaif x = 5:if (x == 5)if x == 5:
What will be the output of the following code?for i in range(1,5): if i == 3: continue else: print(i,end = " ")Options: Pick one correct answer from below1 2 3 41 2 41 2 3 4 51 2
What will be printed by the following code?for i in range(5): for j in range(5, 0, -1): if i == j: print(i, end=" ")
From the below code which one is valid x=2,3,4,5print(x)Yes, 2 is printedYes, [2,3,4,5] is printedNo, too many values to unpackYes. (2,3,4,5) is printed
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.