当前位置: 首页>>代码示例>>Python>>正文


Python General.repeat方法代码示例

本文整理汇总了Python中General.repeat方法的典型用法代码示例。如果您正苦于以下问题:Python General.repeat方法的具体用法?Python General.repeat怎么用?Python General.repeat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在General的用法示例。


在下文中一共展示了General.repeat方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Add_List

# 需要导入模块: import General [as 别名]
# 或者: from General import repeat [as 别名]
    def Add_List(self, Items, BGColors):
        
        for n in range(0, len(Items)):
            for i in range(0, self.nCol):
                self.Columns[self.ColNames[i]]['List'].insert(END, General.repeat(' ', self.Columns[self.ColNames[i]]['Spacer']) + str(Items[n][i]))

                if BGColors[n][i] != None:
                    self.Columns[self.ColNames[i]]['List'].itemconfig(self.Columns[self.ColNames[i]]['List'].size()-1,
                                                                      bg=BGColors[n][i])
开发者ID:NRGlab,项目名称:NRGsuite,代码行数:11,代码来源:MultiList.py

示例2: Add

# 需要导入模块: import General [as 别名]
# 或者: from General import repeat [as 别名]
 def Add(self, Item, BGColor):
     
     for i in range(0, self.nCol):
         try:
             self.Columns[self.ColNames[i]]['List'].insert(END, General.repeat(' ', self.Columns[self.ColNames[i]]['Spacer']) + str(Item[i]))
             
             if BGColor[i] != None:
                 self.Columns[self.ColNames[i]]['List'].itemconfig(self.Columns[self.ColNames[i]]['List'].size()-1, bg=BGColor[i])
         except:
             pass
开发者ID:NRGlab,项目名称:NRGsuite,代码行数:12,代码来源:MultiList.py

示例3: Set

# 需要导入模块: import General [as 别名]
# 或者: from General import repeat [as 别名]
    def Set(self, Item, Col, Value, UptCol):
        
        Found = False
        # Does the column exist
        for i in range(0, self.nCol):
            if self.ColNames[i] == Col:
                Found = True
                break
            
        if Found:
            # Does item exist in column
            Index = 0
            Found = False
            for item in self.Columns[Col]['List'].get(0, END):
                #if item.replace(General.repeat(' ',self.Columns[Col]['Spacer']),'') == str(Item):
                if item.lstrip() == str(Item):
                    Found = True
                    break
                Index += 1

            if Found:
                # Does the update column exist
                Found = False
                for i in range(0, self.nCol):
                    if self.ColNames[i] == UptCol:
                        Found = True
                        break
                
                if Found:
                    # Set item value
                    self.Columns[UptCol]['List'].delete(Index)
                    
                    try:
                        self.Columns[UptCol]['List'].insert(Index, General.repeat(' ',self.Columns[UptCol]['Spacer']) + str(Value))
                    except:
                        self.Columns[UptCol]['List'].insert(END, General.repeat(' ',self.Columns[UptCol]['Spacer']) + str(Value))
开发者ID:NRGlab,项目名称:NRGsuite,代码行数:38,代码来源:MultiList.py


注:本文中的General.repeat方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。