Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara Converting Using Format Method | Revelation
Numeral Systems 101

book
Converting Using Format Method

I appreciate your desire to study 👏 if you are here, it means you are motivated a lot.

The last push of studying numeral systems is learning the format method for strings to convert numbers to different numeral systems.

format() allows you to do the complex substitution, but it goes beyond this course; hence, here you are going to get acquainted with converting numbers using this method. By the way, it is an opportunity for you to pick up the one that you prefer.

This example shows you how decimal numbers can be converted to other numeral systems.

python
# Сonverting to the binary numeral system
"{:b}".format(9873)
# Сonverting to the octal numeral system
"{:o}".format(9873)
# Сonverting to the hexadecimal numeral system
"{:X}".format(9873)
  • {:b} is used to define the binary numeral system;

  • {:o} or {:O} (both ways are acceptable) is used to define the octal numeral system;

  • {:X} (the hexadecimal number must be defined using uppercase letters) or {:x}(the hexadecimal number must be defined using lowercase letters) is used to define the hexadecimal numeral system.

Subsequently, you should use the following syntax:
{:numeral_system_format}.format argument). This method has a significant benefit it prints your number without 0b, 0o, 0x, only converted number. But unfortunately to convert not decimal numbers you should write 0b, 0o or 0X. The decimal converting is diverse you can use 3 methods 😃: {},{:n} or {:d}

python
# Сonverting from the binary to decimal
"{}".format(0b11011)
# Сonverting from the octal to decimal
"{:n}".format(0o3443)
# Сonverting from the hexadecimal to decimal
"{:d}".format(0X67AB)
Compito

Swipe to start coding

It's time for honing your skills!

  1. Convert number 12 from the hexadecimal numeral system to the decimal.
  2. Convert number 23 from the octal numeral system to the hexadecimal.
  3. Convert number 100 from the binary numeral system to the octal.
  4. Convert number 900 from the decimal numeral system to the binary.

Soluzione

decimal_number = "{}".format(0X12)
hexadecimal_number = "{:X}".format(0o23)
octal_number = "{:o}".format(0b100)
binary_number = "{:b}".format(900)
print("I have already converted " + str(decimal_number) + " numbers")
print("and have passed " + str(hexadecimal_number) + " chapters")
print("and " + str(octal_number) + " sections")
print("my first step was learning binary numbers like " + str(binary_number))

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 4. Capitolo 3
# Convert number 12 from the hexadecimal numeral system to the decimal
decimal_number = "{___}".___(0X___)
# Convert number 23 from the octal numeral system to the hexadecimal
hexadecimal_number = "___".format(___)
# Convert number 100 from the binary numeral system to the octal
octal_number = "___".___(___100)
# Convert number 900 from the decimal numeral system to the binary
binary_number = "{:b}".___

print("I have already converted " + str(decimal_number) + " numbers")
print("and have passed " + str(hexadecimal_number) + " chapters")
print("and " + str(octal_number) + " sections")
print("my first step was learning binary numbers like " + str(binary_number))

Chieda ad AI

expand
ChatGPT

Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione

some-alt