ar
Feedback
Python Interviews

Python Interviews

الذهاب إلى القناة على Telegram

Join this channel to learn python for web development, data science, artificial intelligence and machine learning with quizzes, projects and amazing resources for free For collaborations: @coderfun

إظهار المزيد

📈 نظرة تحليلية على قناة تيليجرام Python Interviews

تُعد قناة Python Interviews (@pythoninterviews) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 28 854 مشتركاً، محتلاً المرتبة 4 620 في فئة التكنولوجيات والتطبيقات والمرتبة 14 448 في منطقة الهند.

📊 مؤشرات الجمهور والحراك

منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 28 854 مشتركاً.

بحسب آخر البيانات بتاريخ 30 يوليو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار 102، وفي آخر 24 ساعة بمقدار 2، مع بقاء الوصول العام مرتفعاً.

  • حالة التحقق: غير موثّقة
  • معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 2.55‎%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 0.66‎% من ردود الفعل نسبةً إلى إجمالي المشتركين.
  • وصول المنشورات: يحصل كل منشور على متوسط 735 مشاهدة. وخلال اليوم الأول يجمع عادةً 191 مشاهدة.
  • التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 2.
  • الاهتمامات الموضوعية: يركز المحتوى على مواضيع رئيسية مثل |--, link:-, learning, sql, analytic.

📝 الوصف وسياسة المحتوى

يصف المؤلف القناة بأنها مساحة للتعبير عن الآراء الذاتية:
Join this channel to learn python for web development, data science, artificial intelligence and machine learning with quizzes, projects and amazing resources for free For collaborations: @coderfun

بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 31 يوليو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.

28 854
المشتركون
+224 ساعات
+367 أيام
+10230 أيام
أرشيف المشاركات
22. Write a program to to update the given list in incresing order L = [1,2,3456,59734, 4,8,3,9] L.sort() print(L) Shell : [ 1, 2, 3, 4 , 8 , 9 , 3456 , 59734 ]

21. Write a program to detect double space in a string. a= "Looking to learn programming , Do practice !" print(a.find(" ")) Shell : 30 ( Note: If there's no double space in string , then Shell : -1)

20. Write a program to fill in a letter templete given below with name and date Letter =''' Dear <|Planet|>, You are so beautiful ! Date : <|Date|>''' Planet = input("Enter planet's name : ") Date = input("Enter date :") Letter = Letter.replace("<|Planet|>" , Planet) Letter =Letter.replace("<|Date|>", Date) print(Letter)

19. Write a program to display a user entered name followed by Hello using input () function. a= input("Name \n ") print(" Hello , ",a) or print( " Hello, " +a)

18. Escape sequence characters in strings, EXamples: (i.) a = " The\n universe" print(a) Shell : The Universe (ii.) a= "The \t Universe" Print (a) Shell : The Universe (iii.) a= " The \' Universe" print( a) Shell : The ' Universe (iv.) a = " The \" Universe print ( a) Shell: The " Universe

17 . Write a program to find a word in string. a= ”The universe” print(a.find(”r”)) print(a.find(”e”)) Shell: 9 2

16. Write a program to replace the oldword with newword in strings a = "The univebse" print(a.replace("b","r")) Shell : The universe

15. Write a program to capitalizes the first charater of a string. a = "the" print(a.capitalize()) Shell : The

14. Write a program to count the total number of occurence of any character. A = " The universe" print(A.count("e")) Shell : 3

13. Slicing with skip value. a= ”The universe” print(a[0 : 12 : 2]) shell : Teuies # It will print every 2th position from start

12. Write a program to check whether the string ends with "universe" or not . a= "Hey , Good Morning" print(a.endswith("universe")) Shell : False

11. Write a program to find string length. a = "The Universe" print(len(a)) Shell : 12

10. string slicing Ex.(1.) a= "Complete Freedom" print(a [0:15]) Shell : Complete Freedo Ex.(2.) a="The universe" print(a[1: ]) Shell : he universe # [1: ] treats as [2:12] Ex.(3.) a="The universe" print(a[ :12]) Shell : The universe # [ :12 ] treats as [0 : 12] Ex(4.) a="The universe" print(a[ :-1]) # Reason : We can start counting from last (-1,-2.......) , instead of srating from start (0,1,2,3....). [ In string]

9. If we use ', ' instead of '+' a = "Free" b = "dom" print(a,b) She'll : Free dom

8. Sum of two strings a="Free" b="dom" print(a+b) Shell : Freedom

7. Square of a number a= int(input("Enter the number :")) b= a*a print( "square of given number is :", b )

6. Average of two numbers a = int(input("Enter first number :")) b = int(input("Enter the second number : ")) c= (a+b)/2 print("Average of given numbers : ", c)

5. Use the comparision operator to check a is greater than b or not. a = int (input("Enter first number :")) b=int(input("Enter second number :")) print("a is greater than b ,it is true or false : ", (a>b) )

4. Check the type of the variable assigned using input() function a= input ("Enter something :") print(type(a))

3. Write a program to find remainder when a number is divided by 2 a = input ("Enter the number :") a = int((a)) Remainder = a%2 print("Remainder is ",Remainder)