About 9,610 results
Open links in new tab
  1. Write a program to enter any number and check it is divisible by 7 or not Ans. num = int(input('Enter any number ')) if num % 7 == 0: print('Divisible by 7') else: print('Not divisible by 7') 38 Fill in the blanks to execute loop from 10 to 100 and 10 to 1 (i) for i in range(_____): print(i) (ii) for i in range(_____): print(i) Ans. (i)

  2. Python Programming for Class 10 AI CBSE Notes - Aiforkids

    AI Python Advance Class 10 CBSE Notes, Python Programming for Class 10 CBSE, Including core concepts, Basics of Python, syllabus, Notes and Core Concepts of Python Programming for Class 10 CBSE AI. Start Learning Python at Class 10 with Aiforkids.

  3. Write statement to call the function. Which Line Number Code will never execute? What will be the output of following code? What are the different types of actual arguments in function? Give example of any one of them.

  4. Python – How Do We Use it? Spyder – What is It?

  5. Practical Worksheet No:1 TOPIC : Python Programming 1) Write a Python program to add two numbers. num1 = 1.5 num2 = 6.3 sum = num1 + num2 print(‘The sum of num1 and num2 is’,sum) 2) Write a Python program to find the Square root of a number. num = float(input(‘Enter a number: ‘)) num_sqrt = num ** 0.5 print(‘The square root of num is ...

  6. Chapter 9: Python Revision | Computer Applications Code 165 Class 10

    Get solutions of Computer Applications Code 165 CBSE Class 10 Sumita Arora Chapter 9: Python Revision. Clear your Computer Applications doubts instantly & get more marks in Computer Applications exam easily.

  7. Class 10 Computer Science MCQ and Programs | PDF | Python (Programming

    This document provides study material and Python programs for a Class 10 Computer Science course. It includes 10 multiple choice questions about Python concepts like data types, operators, lists, and tuples.

  8. Python(2.7.0) Worksheets for Class 10 - Practice Olympiad

    Benefits of Python (2.7.0) worksheets for Class 10 and how to download it.

  9. Computer Science Worksheets For CBSE Class 10 - Free …

    Download Computer Science Worksheets for CBSE Class 10 in PDF for free. Get Worksheets for Class 10 in all subjects of as per latest NCERT Syllabus 2021-22.

  10. PYTHON PROGRAMS- C.SC.-XI - learnpython4cbse

    The best way we learn anything is by practising and exercising questions. We have started this section for those (beginner to intermediate) who are not familiar with Python. Hope, these exercises help you to improve your Python coding skills.