Python3 Data Types Quiz

MonumentalZombie avatar
MonumentalZombie
·
·
Download

Start Quiz

Study Flashcards

18 Questions

การแปลงข้อมูลชนิดใดให้อยู่ในรูปของ Boolean ใน Python?

int

ข้อใดเป็นการกำหนดค่าตัวแปรแบบ multiple assignment ใน Python?

x, y = 1, 2

ฟังก์ชันใดใช้สำหรับแปลงชนิดของข้อมูลใน Python?

type()

ข้อใดเป็นตัวอย่างของ explicit conversion ใน Python?

int(3.8)

อะไรจะเกิดขึ้นเมื่อค่าของตัวแปร int, float หรือ complex ถูกกำหนดเป็นศูนย์ใน Python?

คืนค่า False

การใช้ฟังก์ชัน input() เพื่อรับค่าจากผู้ใช้และเก็บไว้ในตัวแปรที่กำหนด เป็นตัวอย่างของ?

'input processing'

การกำหนดค่าตัวแปรใดต่อไปนี้จะทำให้ได้ผลลัพธ์เป็น False ใน Python?

a = True >>> b = False >>> a and b

ใน Python, ประเภทข้อมูลใดไม่สามารถมีขนาดไม่จำกัด?

int (จำนวนเต็ม)

ถ้าต้องการตรวจสอบประเภทข้อมูลของตัวแปรใน Python,คำสั่งใดต่อไปนี้ควรใช้?

type()

การกำหนดค่าตัวแปรใดต่อไปนี้จะทำให้ได้ผลลัพธ์เป็น True ใน Python?

a = False >>> b = True >>> a or b

สำหรับหมายเลข 2.5e2 ใน Python, ค่ามันคืออะไร?

$2.5 x 10^2 = 250$

ถ้าต้องการสร้างตัวแปรชื่อ 'num' และกำหนดค่าให้เป็นจำนวนเต็ม 42, คำสั่งที่ถูกต้องคือ?

num = int(42)

ถ้ามีการกำหนดค่าตัวแปร a และ b ดังนี้ a = 5, b = 7 และทำการพิมพ์ค่า type(a, b) ลงบนหน้าจอ ผลลัพธ์จะเป็นอย่างไร?

ถ้ามีการกำหนดตัวแปร x = 'Hello' และทำการพิมพ์ค่า type(x) ลงบนหน้าจอ ผลลัพธ์จะเป็นอย่างไร?

ถ้ามีการกำหนดค่าตัวแปร y = (1, 2, 3) และทำการพิมพ์ค่า type(y) ลงบนหน้าจอ ผลลัพธ์จะเป็นอย่างไร?

ถ้ามีการกำหนดค่าตัวแปร z = {1: 'apple', 2: 'banana'} และทำการพิมพ์ค่า type(z) ลงบนหน้าจอ ผลลัพธ์จะเป็นอย่างไร?

ถ้ามีการกำหนดค่าตัวแปร m = True และทำการพิมพ์ค่า type(m) ลงบนหน้าจอ ผลลัพธ์จะเป็นอย่างไร?

ถ้ามีการกำหนดค่าตัวแปร n = 10.5 และทำการพิมพ์ค่า type(n) ลงบนหน้าจอ ผลลัพธ์จะเป็นอย่างไร?

Test your knowledge on data types in Python 3, including Boolean, numeric, sequence types, dictionary, and set. Learn about type() function and how it can be used to determine the data type of an object.

Make Your Own Quizzes and Flashcards

Convert your notes into interactive study material.

Get started for free

More Quizzes Like This

Python String Data Type Quiz
10 questions
Python String Input Type Quiz
8 questions
Python 3 Data Types Quiz
18 questions
Use Quizgecko on...
Browser
Browser