Escaping String Characters in Python
To output a string with special characters, such as single quotes, you should escape them. This is done using a slash:
tst = 'sfgs\'sdf'
print(tst) # 'sfgs'sdf'
The following line is given:
tst = "abcd"fr'23"
Output it to the console without errors.