Page 265 - COPA VOL II of II - TP -Punjabi
P. 265

ਉਦਾਹਰਨ 3 : ਬਭਲਟ-ਇਨ ਮੋਡੀਊਲ ਬੇਤਰਤੀਬੇ ਆਯਾਤ ਕਰਨਾ
              Fig 2
                                                                  ਹੁਣ ਪਾਈਥਨ ਇੰਟਰਪਰਰੇਟਰ ਦਭਓ ਅਤੇ ਹੇਠ ਦਭੱਤੀ ਕਮਾਂਡ ਨਾਲ ਇਸ ਮੋਡੀਊਲ
                                                                  ਨੂੰ ਆਯਾਤ ਕਰੋ:
                                                                  # importing built in module random
                                                                  import random
                                                                  # printing random integer between 0 and 5
            ਉਦਾਹਰਨ 2 : ਬਭਲਟ-ਇਨ ਮੋਡੀਊਲ ਗਣਭਤ ਨੂੰ ਆਯਾਤ ਕਰਨਾ          print(random.randint(0, 5))

            ਹੁਣ ਪਾਈਥਨ ਇੰਟਰਪਰਰੇਟਰ ਦਭਓ ਅਤੇ ਹੇਠ ਦਭੱਤੀ ਕਮਾਂਡ ਨਾਲ ਇਸ ਮੋਡੀਊਲ
            ਨੂੰ ਆਯਾਤ ਕਰੋ:                                         print(random.random())
            # importing built-in module math                      # random number between 0 and 100
            import math                                           print(random.random() * 100)
            # using square root(sqrt) function contained          List = [1, 4, True, 800, “python”, 27, “hello”]

            # in math module                                      # using choice function in random module for choosing
            print(math.sqrt(25))                                  # a random element from a set such as a list
            # using pi function contained in math module          print(random.choice(List))
            print(math.pi)                                        Output:
            # 2 radians = 114.59 degrees                          0

            print(math.degrees(2))                                0.026096725940513155
            # 60 degrees = 1.04 radians                           26.894824199392342
            print(math.radians(60))                               27
                                                                  ਉਦਾਹਰਨ 4 : ਬਭਲਟ-ਇਨ ਮੋਡੀਊਲ ਡੇਟਟਾਈਮ ਨੂੰ ਆਯਾਤ ਕਰਨਾ
            # Sine of 2 radians
            print(math.sin(2))                                    ਹੁਣ ਪਾਈਥਨ ਇੰਟਰਪਰਰੇਟਰ ਦਭਓ ਅਤੇ ਹੇਠ ਦਭੱਤੀ ਕਮਾਂਡ ਨਾਲ ਇਸ ਮੋਡੀਊਲ
            # Cosine of 0.5 radians                               ਨੂੰ ਆਯਾਤ ਕਰੋ:
            print(math.cos(0.5))                                  # importing built in module datetime
            # Tangent of 0.23 radians                             import datetime
            print(math.tan(0.23))                                 from datetime import date

            # 1 * 2 * 3 * 4 = 24                                  import time
            print(math.factorial(4))                              # Returns the number of seconds since the
            Output:                                               # Unix Epoch, January 1st 1970
            5.0                                                   print(time.time())
            3.141592653589793                                     # Converts a number of seconds to a date object

            114.59155902616465                                    print(date.fromtimestamp(454554))
            1.0471975511965976                                    Output:
            0.9092974268256817                                    1659024623.8910193
            0.8775825618903728                                    1970-01-06
            0.23414336235146527                                   Example5: Directories List for Modules

            24                                                    # importing sys module
                                                                  >>import sys
                                                                  # importing sys.path

                                                                  >>print(sys.path) (Fig 3)




                                      IT & ITES - COPA - (NSQF ਸੋਧੇ - 2022) - ਅਿਭਆਸ 1.42.10                    251
   260   261   262   263   264   265   266   267   268   269   270