I Made a Simple Program using pyautogui:
import pyautogui
pyautogui.write('Hello world!')
But when I run it I get this Error:
Traceback (most recent call last):
File "C:/Users/*****/Miscellaneous/Python projects/simple_pyautogui_program.py", line 3, in <module>
pyautogui.write('Hello world!')
AttributeError: module 'pyautogui' has no attribute 'write'
Is there a way to solve this or should I use pyautogui.press()?