1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
b: int = 40
if True:
print("hello world")
if False:
"hello"
else:
"world"
cond: bool = True and False
cond = True or False
if cond:
"asdf"
print('hello \"world\"')
if cond or True:
"bbb"
else:
"ccc"
iii: str = "iii"
if cond or False:
"hhh"
else:
iii
else:
"other"
print('hello \"world\"')
if cond or True:
"bbb"
else:
"ccc"
if "as" == "as":
print("hi")
else:
print("asdf")