Sunday, October 29, 2023

Python Observation Program list 1

 Write algorithm, Flowchart and python coding for the following

1. Convert farenheit to centrigrade and viceversa.

2. add the digits in a given no

3. Display Fibinocci Series using recursion

4. Print student grade sheet. Get RollNo, Name, 5 subject mark. Student is "passed", if he gets minimum 50 marks in each subject. Grades can be calculated using average as follows. "A+" if average >95, "A" if average >90, "B+" if average >85, "B" if average >80, "C" if average >70, "D" if average >60, "E", otherwise

5. Print the shape by getting the input as number of points. 1 pt - circle, 2 pt line, 3 point - triangle (right angled/others), 4 - point square/rectange (if angle is 90) - Parallelogram (if angle is other than 90). Get addition parameters depends on the shape.

6. print the following logically

1

12

123

1234

12345

123456

1234567

12345678

123456789

12345678

1234567

123456

12345

1234

123

12

1

No comments:

Post a Comment

Python observation Program list 2

  Write aim, algorithm and python program and draw flowchart for the following. 1. Calculate the number of vowels and spaces inbetween words...