Home  >  Article  >  Backend Development  >  What does % mean in python

What does % mean in python

藏色散人
藏色散人Original
2019-06-21 11:44:3848274browse

What does % mean in python

What does % mean in python?

% in python:

1. Modulo operation is equivalent to mod, which is to calculate the remainder of division, for example, 5%2 will get 1.

2. % is also used in python’s formatted output, for example:

a = 'test'
print 'it is a %s' %(a)

The printed result is it is a test

Related recommendations: "Python Tutorial

The above is the detailed content of What does % mean in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn