修正ファイル : C:\Python310\Lib\site-packages\pyautogui_pyautogui_win.py
修正前)
needsShift = pyautogui.isShiftCharacter(key)
修正後)
needsShift = pyautogui.isShiftCharacter(key) if key == '@': needsShift = False if key == '^': needsShift = False if key == ':': needsShift = False
type(XXX)のように記述する print(num, type(num)) // 1 <class 'int'> print(lang, type(lang)) // Python <class 'str'> print(is_ok, type(is_ok)) // True <class 'bool'>
17 / 3 >> 5.66666666667 17 // 3 >> 5 5 * 5 * 5 >> 125 5 ** 3 >> 125