Home  >  Article  >  Backend Development  >  How to type single quotes in python

How to type single quotes in python

silencement
silencementOriginal
2019-05-16 09:52:4428689browse

How to enter single quotes in Python?

How to type single quotes in python

Sometimes when we print a string to the screen, the string may contain single quotes. How to achieve this? Two solutions

The first one: put single quotes inside double quotes

For example

print("H's my good friend!")

print("I really like 'python'!")

Output result

How to type single quotes in python

Through the above example, you can see that single quotes have been used by us

Second: Use escape characters

Python itself uses \ to escape some special characters, especially when quotation marks are added to the string

For example

print('H\'s my good friend!')

print('I really like \'python\'!')

Output result

How to type single quotes in python

The above is the detailed content of How to type single quotes in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn