Answers for "python =// operator"

0

Operators in python

x = 5
y = 6

d = 12 % 5     # d is 2
z = x + y      # z is 11
w = x - y      # w is -1
q = 5 * 6      # q is 30
u = 10 / x     # u is 2.0
p = 10 * 2.0   # p is 20.0
t = x ** 3     # t is 125
c = 28 // y    # c is 5
Posted by: Guest on October-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language