اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

Python اسئلة واجوبة المقابلات

Test your skills through the online practice test: Python Quiz Online Practice Test

فروقات ذات صلة

Python vs JavaPython 2 vs Python 3

سؤال 16. What is a boolean in Python?

Boolean is one of the built-in data types in Python, it mainly contains two values, which are true and false

Python bool() is the method used to convert a value to a boolean value.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 17. What are the functions in Python?

In Python, functions are defined as a block of code that is executable only when it is called. The def keyword is used to define a function in Python.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 18. Define self in Python?

In Python self is defined as an object or an instance of a class. This self is explicitly considered as the first parameter in Python. Moreover, we can also access all the methods and attributes of the classes in Python programming using self keyword.  

In the case of the init method, self refers to the newer creation of the object. Whereas in the case of other methods self refers to the object whose method was called. 

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 19. How do we convert the string to lowercase?

 The lower() function is used to convert string to lowercase.

Example:

str = "WithoutBook"

print(str.lower())

Output:

withoutbook

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 20. What is Try Block in python?

A block that is preceded by the try keyword is known as a try block.

Syntax:

try {

    // Statements that may cause exception

}

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.