You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a='some text'# declare a string variableb=123# an integerc=True# a booleand="hello world"# declare a string variable menggunakaan tanda ("") petik dua e=false# a booleanf=3.5# a floatg=2+3j# a complexh= [1,2,3,4] # a listi= ("w","o","r","l","d") # a tuple
Conditional
deftest_conditional():
nama="wenty"if(nama=="wenty"):
print ("this is if")
elif (nama=="tiara"):
print ("this is elif")
else:
print("else")
test_conditional()