如何使用 python 脚本编写引号

How to write quotes with your python script

我想知道如何使用脚本 python

编写此 ''

因为我不知道如何使用 python ''

从脚本中编写此内容

这是我的代码:

from selenium import webdriver
import time
from random import *
import pyautogui as pg


time.sleep(2)
for i in range(1,510):
    pg.typewrite('')
    # here i want to type quotes in typewrite

这里我想用打字机输入引号

我想用我的 script 在记事本中写引号,但它不是 writing 引号,如果 abc 或 123 中的某些字符写

谢谢!

有没有像\n这样的特殊字符或者是什么?

你可以简单地使用双引号:

    pg.typewrite("''")

你应该使用转义符,大多数情况下是\

pg.typewrite('\'\'')

转义字符 (\) 会将 ' 视为文字字符而不是字符串标识符。