Python တွင် if statement အတွက် မှန်ကန်သော syntax သည် အဘယ်နည်း။
if (expression):
if expression:
if {expression}:
if [expression]:
အဖြေမှန်က
ဝူးဟူး! သင်မှန်ပါတယ်
Python တွင် အခြားစာပိုဒ်တစ်ခုပါသော if statement အတွက် မှန်ကန်သော syntax သည် အဘယ်နည်း။
if (expression): else:
if expression: else:
if {expression}: else:
if [expression]: else:
အဖြေမှန်က
ဝူးဟူး! သင်မှန်ပါတယ်
Python ရှိ elif အပိုဒ်ပါသော if statement အတွက် မှန်ကန်သော syntax သည် အဘယ်နည်း။
if (expression): elif (expression):
if expression: elif expression:
if {expression}: elif {expression}:
if [expression]: elif [expression]:
အဖြေမှန်က
ဝူးဟူး! သင်မှန်ပါတယ်
if statement တစ်ခုတွင် variable x သည် 5 နှင့် ညီမျှခြင်းရှိမရှိကို သင်မည်သို့စစ်ဆေးမည်နည်း။
if x == 5:
if x = 5:
if x equals 5:
if x is 5:
အဖြေမှန်က
ဝူးဟူး! သင်မှန်ပါတယ်
if statement တစ်ခုတွင် variable x သည် 5 နှင့် ညီမျှခြင်းရှိ၊ မရှိကို သင်မည်သို့စစ်ဆေးမည်နည်း။
if x != 5:
if x <> 5:
if x /= 5:
if x is not 5:
အဖြေမှန်က
ဝူးဟူး! သင်မှန်ပါတယ်
Your Score
/
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Go Back Home
/
answered