Pytónový modul

Príklady kódu

7
0

funkcia python mod

#the modulus operator is % in Python
5 % 3
#returns remainder: 2
6
0

pytónový modul

# the 1st technique is standard way of calculating modulus
# the 2nd technique is doing samething using // operator
print(10%7)
print(10 - (7 * (10//7)))

# Output:
# 3
# 3
5
0

ako modul v Pythone

# let say "a" is our varable then,
# and that is a is 25
a % 10
# then this returns 5 because % gets the remainder of a / 10
4
0

python dostane pripomienku divízie

a % b
2
0

čo je modul v Pythone

# Modulus is the reminder of the 2 divisions, ex 25 % 2 = 1
#ie, 2*12 = 24 and the number is 25 so when we divide 25/2 the reminder is 1

print(25%2)
# Output = 1
#Hope you understood that, have a nice day :D

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................