Beispiel #1
0
    def g_info(self):
        cprint('g: ', 'yellow', attrs=['bold'], end='\n')

        for k in self.g.keys():
            print("'", k, "'", ': ', to_Hz(self.g[k]), sep='')

        print()
Beispiel #2
0
    def wa_info(self):
        cprint('wa: ', 'yellow', attrs=['bold'], end='\n')

        for k in range(len(self.wa)):
            print(to_Hz(self.wa[k]), sep='')

        print()
Beispiel #3
0
    def wc_info(self):
        cprint("wc: ", "yellow")

        print(to_Hz(self.wc))

        print()
Beispiel #4
0
    def g_info(self):
        cprint(' g = ', 'yellow', attrs=['bold'], end='')

        print(to_Hz(self.g))

        print()
Beispiel #5
0
    def wa_info(self):
        cprint('wa = ', 'yellow', attrs=['bold'], end='')

        print(to_Hz(self.wa))
Beispiel #6
0
    def wc_info(self):
        cprint('wc = ', 'yellow', attrs=['bold'], end='')

        print(to_Hz(self.wc))
Beispiel #7
0
    def g_info(self):
        cprint(' g: ', 'yellow', end='')

        print(to_Hz(self.g))

        print()
Beispiel #8
0
    def wa_info(self):
        cprint('wa: ', 'yellow', end='')

        print(to_Hz(self.wa))

        print()
Beispiel #9
0
    def wc_info(self):
        cprint('wc: ', 'yellow', end='')

        print(to_Hz(self.wc))

        print()