Как поместить bindslotRope и bindautoSword в кавычки?

bindautoRope = input('AutoRope bind/Бинд на автоудочку:')
bindslotRope = int(input('Rope slot/Слот с удочкой:'))
bindautoSword = int(input('Sword slot/Слот с мечом:'))

def autoRope():
        if k.is_pressed(bindautoRope):
            a.press(bindslotRope)
            a.click(button='right', clicks=1)
            a.press(bindautoSword)
autoRope()

(Использую модули pyautogui as a и keyboard as k)

Мне нужно чтобы во время активации функции autoRope() bindslotRope и bindautoSword помещались в кавычки как мне можно это осуществить?


Ответы (0 шт):