Python စကားလုံး istitle() တန်ဖိုး
အမှတ်
ခုနစ်ချက် ချွတ်သို့ အဓိပ္ပာယ် များ အစိတ်အပိုင်းပြု ပြီး အကြွင်းအကျန် သုံးစွဲ
txt = "Hello, And Welcome To My World!" x = txt.istitle() print(x)
အချက်အလက် နှင့် အသုံးပြုခြင်း
အခြေခံ အချက် နှင့် အသုံးပြုခြင်း
အက္ခရာ နှင့် အောက်ဆိုင်ရာ ကို လျှောက်ထား
အက္ခရာဆိုင်ရာ
string.istitle()
အရာမပါ
အရာမပါ
အမှတ်
အမှတ်
ခုနစ်ချက် ချွတ်သို့ အဓိပ္ပာယ် များ အစိတ်အပိုင်းပြု ပြီး အကြွင်းအကျန် သုံးစွဲ
a = "HELLO, AND WELCOME TO MY WORLD" b = "Hello" c = "22 Names" d = "This Is %'!?" print(a.istitle()) print(b.istitle()) print(c.istitle()) print(d.istitle())