$$ \newcommand{\floor}[1]{\left\lfloor{#1}\right\rfloor} \newcommand{\ceil}[1]{\left\lceil{#1}\right\rceil} \renewcommand{\mod}{\,\mathrm{mod}\,} \renewcommand{\div}{\,\mathrm{div}\,} \newcommand{\metar}{\,\mathrm{m}} \newcommand{\cm}{\,\mathrm{cm}} \newcommand{\dm}{\,\mathrm{dm}} \newcommand{\litar}{\,\mathrm{l}} \newcommand{\km}{\,\mathrm{km}} \newcommand{\s}{\,\mathrm{s}} \newcommand{\h}{\,\mathrm{h}} \newcommand{\minut}{\,\mathrm{min}} \newcommand{\kmh}{\,\mathrm{\frac{km}{h}}} \newcommand{\ms}{\,\mathrm{\frac{m}{s}}} \newcommand{\mss}{\,\mathrm{\frac{m}{s^2}}} \newcommand{\mmin}{\,\mathrm{\frac{m}{min}}} \newcommand{\smin}{\,\mathrm{\frac{s}{min}}} $$

Prijavi problem


Obeleži sve kategorije koje odgovaraju problemu

Još detalja - opišite nam problem


Uspešno ste prijavili problem!
Status problema i sve dodatne informacije možete pratiti klikom na link.
Nažalost nismo trenutno u mogućnosti da obradimo vaš zahtev.
Molimo vas da pokušate kasnije.

Reading data

Reading text

The programs we have learned to write so far contain all the information needed and always work the same way. When we need a program to do the same thing with different data, we would have to modify the program itself. This method may be quite appropriate when changes to the data are small and not frequent.

Another way to get our program to handle more diverse tasks is to enable data entry. Iserting data into a program during its execution is done using the input() function. This function works by waiting for the program user to type something (and press the Enter key) and then returning the typed text as a result.

When you run this program, to see how it works, type something and press Enter. Try the same program in the IDLE environment or on the repl.it site.

The program works as described, but this program behavior can be confusing. If someone were to run a program like this in the IDLE environment without knowing that the program was expecting data, it might look like their computer was locked because nothing was happening, and in fact the program was just waiting for input from the keyboard.

To help the user understand what is expected of them, we can also use the form of the input function with a single text argument, which will be printed as a guide to the user. For example:

Whether we choose one or the other form of the input function, depends on the purpose of the program. When writing a program in which other people will enter data, we use a form with an argument, serving as an instruction. When we write a program only for personal short-term (maybe even one-time) use, then we have no need for instructions and can use a form without arguments.

Also, be aware that for some of the environments in which the program is running, we can arrange that data is being read from another location where we prepared it n advance, instead of reading the data from the keyboard. In such cases there is no waiting for the data to be entered, it is loaded automatically and there is no need to print the instruction. Therefore, in such cases we would also use the input function without arguments.

Reading numbers

We have seen that the input() function returns a string (text typed by a user). This means that if we need data of another type, we need to change the type of data returned by the input() function from string to the desired type. Changing the data type is also called conversion. For example, if we want an integer, then we need to convert the resulting text to an integer. Here’s how to do it in Python:

The int() function converts a text value to an integer value. Thus, with the command n = int(s) we place an integer value in the variable n, which is why the + sign in the program represents the addition of integers. Summation is added to the program as proof that n is indeed an integer value (the result shows that the values are added up as numbers).

Since the input function returns a string, we can also pass its result directly to the int function. That way we avoid using the s variable and get a slightly shorter program that does the same thing:


For a real number, int should just be replaced with float, because the float() function converts a text value to a real number. For example, if we want to load a real number and print twice that number, the program may look like this:

or

Check out what happens in these two examples when you enter something else rather than a number.

About conversions

We have seen that when a string contains an integer or a real number, that string can be converted to an integer or real type using the int() or float() functions. On the other side, integers and real numbers can always be converted to a string. The str() function is used to convert to a string.

The conversion of an integer value to a real one is done automatically when needed, although we can also do this explicitly by calling the float function.

Conversely, when we need to convert a real number to an integer, that conversion does not happen automatically (for a reason) and needs to be set in the program by calling the int() function. When converting a real number to an integer, any decimals of the real number are discarded, which means that rounding is always towards zero. In other words, when the value of the real number x is not integer, * int(x)* is closer to zero than x.

Questions

    Q-13: What happens when we run the next program and enter 2?

    a = input()
    print(a+3)
    
  • The program will print 5
  • Try again.
  • The program will print 23
  • Try again.
  • An error will occur when trying to add a string and a number
  • Correct!

    Q-14: What happens when we run the next program and enter 2?

    a = input()
    print(a+'3')
    
  • The program will print 5
  • Try again
  • The program will print 23
  • Correct
  • An error will occur when trying to add a string and a number
  • Try again
    Q-15: Match the expressions with the calculation results. Try again!
  • '2.11'
  • str(2.1) + '1'
  • 3.1
  • float('2.1') + 1
  • error in computation
  • float('2.1') + '1'
  • 2.11
  • float('2.1') + 1/100
  • '3.1'
  • str(2.1 + int('1'))

    Q-16: When is the integer int(a) greater than the real number a?

  • When the first decimal place of a is greater than or equal to 5
  • Try again.
  • When the number a is negative
  • Correct!
  • When the number a is positive
  • Try again.
  • When the number a is single-digit
  • Try again.
  • When the difference between a and int(a) is greater than 0.5
  • Try again.