破折号python从pandas数据框列值填充输入和下拉框

时间:2020-06-12 05:04:21

标签: python plotly-dash

我不知道是否有任何方法可以通过数据框列值在应用程序内填充输入框和下拉框,用户在单击提交按钮时使用键作为输入来填充输入框。

这是一小段代码,我在其中提交获取报告部分的值,然后单击“提交”按钮来填充帐户ID输入框。

    def rotate(self):
    self.rotate_ticks -= 1
    if self.rotate_ticks == 0:
        self.angle = (self.angle + self.angular_velocity) % 360
        orig_rect = self.image.get_rect()
        rot_image = pygame.transform.rotate(self.image, self.angle)
        rot_rect = orig_rect.copy()
        rot_rect.center = rot_image.get_rect().center
        rot_image = rot_image.subsurface(rot_rect).copy()
        self.image = rot_image
        self.rotate_ticks = 3

0 个答案:

没有答案