Python Handbook For Beginners. Roman Telmanovich Gurbanov

Python Handbook For Beginners - Roman Telmanovich Gurbanov


Скачать книгу
hit enter. If your comparison is correct, the program will respond: True. If not, then False. Let's see how the examples above look in the console:

      See that? This is how Boolean logic and values work. But what if we try comparing strings? Try comparing apples to oranges using the following:

      "apples" == "oranges"

      See the output? Now, try changing comparison operators and values to your liking. See what happens? Now you know that Boolean logic works not only with numeric but with other data formats in programming.

      3 True and False in Variables

      Let us see how we can use True and False values in variables. We can store results from comparisons that return True or False in variables. This is how it works:

      result = "apples" == "oranges"

      print(result)

      Run the above code in the console and see what it returns. Let's break it down.

      I've created a variable named result in this code and assigned it a Boolean value from comparing the two strings "apples" and "oranges ".

      Then I went down one line and printed the value of the "result" variable on the screen, passing the variable name in parentheses to the print function.

      Does it make sense?) Now, alter the code by indicating that apples and oranges are not equal. What does the program return?

      4 Comparing Variables

      Not only can we compare numbers and strings, but the entire variables too! See how we can do it:

      fruit = "Kiwi"

      result = fruit == "Apple"

      print(result)

      Before you write the code into the console and hit enter, think of what output it will return? Let's break it down:

      Конец ознакомительного фрагмента.

      Текст предоставлен ООО «ЛитРес».

      Прочитайте эту книгу целиком, купив полную легальную версию на ЛитРес.

      Безопасно оплатить книгу можно банковской картой Visa, MasterCard, Maestro, со счета мобильного телефона, с платежного терминала, в салоне МТС или Связной, через PayPal, WebMoney, Яндекс.Деньги, QIWI Кошелек, бонусными картами или другим удобным Вам способом.

/9j/4AAQSkZJRgABAQEAZABkAAD/2wBDAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4+JS5ESUM8SDc9Pjv/2wBDAQoLCw4NDhwQEBw7KCIoOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozv/wAARCAAwArYDASIAAhEBAxEB/8QAGwABAAIDAQEAAAAAAAAAAAAAAAUGAgQHAwH/xAA8EAABAwMDAgMGAwUHBQAAAAABAgMEA

Скачать книгу