Page 255 - COPA Vol II of II - TP - Bengali
P. 255

IT & ITES                                                                     অনুশীলনী  1.39.05
            COPA - ইললকটিভ মডিউল 1 - পাইথলন প্্রাগ্াডমং


            অপালিিি অগ্াড্যকালিি(operator precedence) উপি ডভে্ডে কলি েম্পাদলনি
            ক্রম ডন্য নিািণ(sequence of execution) করুন(Determine the sequence of execu-
            tion based on operator precedence)

            উলদেশ্য : এই অনুশীলননর শশনে আপনন সক্ষম হনেন
            • পাইথলন  গাডণডেক(arithmatic) অপালিিি
            •  েুলনা(comparision) অপালিিি
            •  লক্জক্যাল অপালিিি
            •  ডেিও়াইজ অপালিিি
            •  ডনল়াগ (assignment) অপালিিি
            • অপালিিি অগ্াড্যকাি (operator precedence)
            •  অপালিিি েহলযাগীো( operator associativity)

               ্রল়াজনী়ো (Requirements)

               ি ু লে/েিঞ্াম/যন্ত্(Tools/Equipment/ Machines)
               •   শেস্কটপ/ল্যযাপটপ নপনস         - 1 No.          •  Python Ver 3.10.5 েযা সে ্বনশে     - 1 No.
               •  উইন্ডযাজ ওএস                   - 1 No.

            পদ্ধনি (PROCEDURE)

            টযাস্ক 1 : পাইথলন arithmatic অপালিিি
            1  টট েযানর্নিক শ্ক্র়েযাকলযাপ ননম্নরূপ:              p = a ** b
            # Examples of Arithmetic Operator                     # print results
            a = 9                                                 print(add)
            b = 4                                                 print(sub)
            # Addition of numbers                                 print(mul)
            add = a + b                                           print(div1)
            # Subtraction of numbers                              print(div2)
            sub = a - b                                           print(mod)
            # Multiplication of number                            print(p)
            mul = a * b                                           Output:
            # Division(float) of number                           13
            div1 = a / b                                          5
            # Division(floor) of number                           36
            div2 = a // b                                         2.25
            # Modulo of both number                               2
            mod = a % b                                           1
            # Power                                               6561





            টযাস্ক  2 : েুলনা (comparison)অপালিিি
            1   ি্ভলনযা (comparison) অপযানরটর ননম্নরূপ:           print(a > b)
            # Examples of Relational Operators                    # a < b is True
            a = 13                                                print(a < b)
            b = 33                                                # a == b is False
            # a > b is False                                      print(a == b)
                                                                  # a != b is True
                                                                                                               241
   250   251   252   253   254   255   256   257   258   259   260