Skip to content Skip to sidebar Skip to footer

Whats Does % Mean In Python? Have Trouble Understanding

I have searched the forums for a little bit now and I am still very confused. If someone could direct me to an article that explains this more in depth I would greatly appreciate i

Solution 1:

In the context you are asking about the % is used to help format output, and has nothing to do with any mod operation.

For instance, %3d, %.2f are all different ways to format output. The first example means you want to display an integer and reserve 3 spaces for it. The 2nd one means you want to display a float type value with 2 numbers after the decimal point.

SeeString Formatting Operations in http://docs.python.org/library/stdtypes.html#string-formatting-operations for more information and details about the various formatting types and options.

You may come across something like this:

number_of_Widgets = 5
cost = 66.8788
print'Total cost for %d widgets is $ %5.2f.' % (number_of_Widgets, cost)

yields:

Total cost for5 widgets is $ 66.88.

The part enclosed in ' ' uses formatting instructions as place holders for the actual variable values supplied in toward the end of the line. The values are preceded by the % and then the () contain the variables that supply the values.

Here is a simple example as to why the format strings can come in handy for formatting your output:

Here we don't reserve and additional space for the number and you can see it shifting the output when it reaches 10.

In [9]: for i in xrange(5,15):
   ...:     print'%d is the number' % i
   ...:
5is the number
6is the number
7is the number
8is the number
9is the number
10is the number
11is the number
12is the number
13is the number
14is the number

Here we format the number with two spaces, and get a leading blank space for single digit numbers.

In [10]: for i in xrange(5,15):
   ....:     print'%2d is the number' % i
   ....:
 5is the number
 6is the number
 7is the number
 8is the number
 9is the number
10is the number
11is the number
12is the number
13is the number
14is the number

Solution 2:

% in an arithmetic expression means modulus.

% inside a literal string like "%.3f" is just a normal character; it has nothing to do with modulus.

But strings with % signs inside them are special when you use them in conjunction with the % operator. In this case, the value on the left is a string, so the modulus meaning doesn't apply; instead, you get formatting. The %-sequences inside the string are placeholders that get replaced by the values in the tuple, formatted according to what comes after each '%' in the string. For i nstance, "%.3f" means "a floating point value with three digits after the decimal point.".

See http://docs.python.org/library/stdtypes.html#string-formatting for details on the format specifications; it's approximately the same as the printf family of functions in C.

Solution 3:

In:

"%.3f" % (hits / at_bats)

the percent sign is used in two different ways, neither of which is related to the modulus operator.

Specifically:

  • the second % is the string formatting operator;
  • the first %is used in conjunction with the first, and defines the actual format used.

Solution 4:

Check this out http://docs.python.org/release/2.6/library/string.html

“Format specifications” are used within replacement fields contained within a format string to define how individual values are presented (see Format String Syntax.) They can also be passed directly to the builtin format() function. Each formattable type may define how the format specification is to be interpreted.

The modulus function in Python is just mod(p,q)

Solution 5:

The % used to format strings is not the same as the modulus operator. Notice how it's inside quotes.

% for string formatting is a standard and convention in many programming languages - http://en.wikipedia.org/wiki/Printf_format_string

Post a Comment for "Whats Does % Mean In Python? Have Trouble Understanding"