Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Advanced Formatting: Sign | Strings Formatting
String Manipulation in Python

book
Advanced Formatting: Sign

Let's now consider the formatting of integer objects. Assume we want to represent our numbers along with plus/minus sign. The minus sign will be printed anyway, but plus sign never prints with an integer.

To make Python print a sign of a number we need to set sign option. There are three of them:

OptionMeaning
: (space after the colon)Use a space before positive number, a minus - before negative
:-Use a minus sign for negative numbers only
:+Use a plus sign for positive numbers, and minus - for negative

For example,

print(".{:+}.{: }.".format(3, -7))
print(".{:+}.{: }.".format(-6, 2))
12
print(".{:+}.{: }.".format(3, -7)) print(".{:+}.{: }.".format(-6, 2))
copy
Завдання

Swipe to start coding

Given two variables: min_temp with value -40 and max_temp with value 42. You need to insert correct format options to display - sign for min_temp, and + sign for max_temp, and format string with these variables.

Рішення

# Variables
min_temp = -40
max_temp = 42

# Format and print the string
print("The minimum temperature is {:-} C, the maximum is {:+} C".format(min_temp, max_temp))

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 7
single

single

# Variables
min_temp = -40
max_temp = 42

# Format and print the string
print("The minimum temperature is {___} C, the maximum is ___ C".format(___, ___))

Запитати АІ

expand

Запитати АІ

ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

some-alt