What is the difference between print parameter sep and end output in python
This article introduces the relevant knowledge of "what is the difference between print parameters sep and end output in python". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
Master the mysteries of print
First, by default, multiple parameters are passed in, and the output results are separated by spaces.
> print ("Liu Jinyu programming", "programming creates the City")
Liu Jinyu creates the city by programming
Second, use the delimiter to separate the output of multiple parameters, and the delimiter parameter sep
> print ("Liu Jinyu programming", "programming creates cities", sep=' |')
Liu Jinyu programming | programming creates the city
Third, the modification of line breaks, the parameter end
X = "Welcome to the blog" + "http://ljy.kim"
Print (x _ end = "")
Print ("Welcome" + "join our QQ group," + "programming to create cities", end= "\ n\ n")
IV. Summary and emphasis
1. Modify the sep parameter in print
Used to modify the delimiter
2. Modify the end of the print. The default is a new line.
This is the end of the content of "what is the difference between the print parameters sep and end output in python". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!