Maison > Article > développement back-end > Fonction PRINT en python
13-07-2024
La fonction print() est une fonction qui nous permet d'afficher à l'écran
La fonction print() a trois utilisations différentes ;
nous pouvons utiliser n'importe qui pour taper une citation, nous ne pouvons pas utiliser une citation différente dans la même ligne
print()---------------------------#create empty line
print("jothilingam")--------------#string should print with""
print(5)------------------------#number can print without ""
print("jo""jo")--------------print without space print("jo"+"jo")--------------print without space answer jojo print("jo","jo")--------------print with space answer jo jo
imprimer avec des f-strings
name = "jothi" print(f"Hello {name}") # Output : Hello jothi
caractère d'échappement de nouvelle ligne n
print("jo\nthi") jo thi
paramètre séparé
print("jo","jo",sep="_")...................sep="" is default answer jo_jo
print("jo", "lingam", sep='thi') answer jothilingam
paramètre de fin
print("jothi",end="lingam") answer jothilingam
print("jothi",end="")----------------without space print("lingam") answer jothilingam
print("jothi",end=" ")----------------with space print("lingam") answer jothi lingam
* paramètre
print(*"jothilingam") answer j o t h i l i n g a m
paramètres fileand flush, puisque ces paramètres sont les paramètres qui nous permettent de traiter les fichiers
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!