wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Python เบื้องต้น

Total questions: 10

Worksheet time: 8mins

Name
Class
Date
1.

print('hello world')

a)

print

b)

hello world

c)

'hello world'

d)

('hello world')

2.

ข้อใดคือจำนวนเต็ม

a)

string

b)

int

c)

float

3.

ข้อใดคือจำนวนจริง

a)

string

b)

int

c)

float

4.

ข้อใดคือตัวอักษร

a)

string

b)

int

c)

float

5.

one = 1

two = 2

three = one + two

print(three)

a)

three

b)

3

c)

one

d)

1

6.

one = 1

two = 2

three = one + two

print(two)

a)

two

b)

three

c)

2

d)

3

7.

one = 1

two = 2

three = one + two

print('three')

a)

three

b)

3

c)

2

d)

two

8.

one = 1

two = 2

three = one + two

three = three + two

print(three)

a)

3

b)

4

c)

5

d)

6

9.

one = 1

two = 2

three = one + two

print(three)

three = three + two

a)

3

b)

4

c)

5

d)

6

10.

print(hello world)

a)

print

b)

hello world

c)

'hello world'

d)

Error