Lesson 4: print() function in python | formatting using print function in python | output formatting

Опубликовано: 18 Август 2024
на канале: VCODE LOGIC
8
0

The print() function in Python is one of the most commonly used functions,
and its primary purpose is to output data to the console


Formatting the Output:

name="vcode logic"
age=100

1.Concatenation:

print("Name: " + name + ", Age: " + str(age))

2. f-Strings (Python 3.6+):

print(f"Name: {name}, Age: {age}")
{} is place holder
A placeholder can fcontain variables, operations, functions, and modifiers to format the value.

3.Controlling the End of Output:
print("Hello", end=" ")
print("World!")

Printing Special Characters
You can use escape characters to include special characters in your output:

\n: Newline
\t: Tab
\\: Backslash
\": Double quote
\': Single quote


Смотрите видео Lesson 4: print() function in python | formatting using print function in python | output formatting онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь VCODE LOGIC 18 Август 2024, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 8 раз и оно понравилось 0 людям.