توضیحات در زبان پایتون python،پای ثن،پایثان
يكشنبه, ۱۸ مهر ۱۳۹۵، ۰۲:۳۰ ق.ظ
gameover.blog.ir
در پایثان،توضیحات بعد از علامت # می آید.
مثال1:
# this is the first comment
مثال2:
>>> 17 / 3 # int / int -> int 5 >>> 17 / 3.0 # int / float -> float 5.666666666666667 >>> 17 // 3.0 # explicit floor division discards the fractional part 5.0 >>> 17 % 3 # the % operator returns the remainder of the division 2 >>> 5 * 3 + 2 # result * divisor + remainder 17
۹۵/۰۷/۱۸