Practical Getting started with python class 11 Comprehensive Guide

This article – Practical Getting Started with python class 11 provides, A list of practical Python Basic Programs list class 11 for Getting Started with Python contains a list of programs Python for class 11 computer science and informatics practices.

Practical Getting started with python class 11

The first section of Practical Getting started with python class 11  consists of Python installation and downloading.

1 Download the latest version of Python from www.python.org. If you don’t have a computer or laptop, download this app on your smartphone. Click here to download the app.

Solution Steps:

[1] Go to the Python website as mentioned above and go to the download section.

[2] Find the latest version and download it.

[3] Click on Python 3.XX.X version.

[4] Save the file at the desired location.

[5] Run the exe file to install.

The next section of Practical Getting Started with Python class 11, is based on an interactive mode working environment. Here it is!

2 Write the following simple statements in Python interactive mode and take a screenshot of it including the output.

  1. 11 + 67
  2. 34 + 89 – 34
  3. (24 / 2) + (89%4)
  4. 11 * 5 – (22 * 2)
  5. 25 ** 3 + (26 **3)
  6. 23 // 5 % 2
  7. 5 < 3
  8. 8 > 13
  9. 21 < 12 and 5 > 2 or a ==’A’
  10. 23 != 25 and 26 == 26

Do yourself.

The next section of Practical Getting started with python class 11, consists of programs based on input() and print() functions.

Click on the link for the solution.

3 Write a statement to print your favorite poem in Python. Use “\n” to print the next line. (Without indentation)

4 Write a program to print a table of an entered number n .

5 Write a Python statement to repeat the word “Python” three times using a variable and * operator.

6 Write a Python statement to accept your first name, last name, and surname in three variables and join them using the print() function.

7 Write a Python statement to display your name and address both in a single line.

8 Write a statement to print your favorite poem command in Python. Use “\n” to print the next line with a proper indentation.

Click here to return on the main page of class 11.

Leave a Reply