Variables and Data Types
Variables
Variable ဆိုတာကကျတော့ a = 21 နဲ့ b = "Hello" အတွဲလိုက်ကို Variable လို ခေါ်တာပါ။
Variable ရဲ့ ဘယ်ဘက်က a တို့ b တို့ ကိုတော့ value လို့ ခေါ်ပြီး ညာဘက်က 21 နဲ့ Hello တို့ကတော့ properties လို့ ခေါ်ကြပါတယ်။ အလယ်က " = " sign ကိုတော့ assigned လုပ်တယ် ဆိုပြီး သုံးကြပါတယ်။ a value မှာ 21 ဆိုတဲ့ properties ကို assign လုပ်တာ ၊ b မှာ " Hello" ကို Assign လုပ်တာ စသဖြင့်ပြောနိုင်ပါတယ်။
Basic Data Types
Symbol
Data Type
Format
Example
str
String
Text
a ="Harry"
int
Interger
Integer
b = 21
float
float
number with decimal
c = 3.14
bool
boolean
true or false
d = true , e= false
Last updated