Sort by

recency

|

1026 Discussions

|

  • + 0 comments

    print(a//b) print(float(a/b))

  • + 0 comments

    In Python 3, the / operator returns float division while // gives integer division. For example, 5 / 2 is 2.5, but 5 // 2 is 2. It’s a small difference but very important in solving problems correctly. Paying attention to such details is like handling a good bathroom remodeling arvada project precision makes all the difference.

  • + 0 comments

    if name == 'main': a = int(input()) b = int(input()) print((a//b)) print((a/b))

  • + 0 comments

    this is a informative post

  • + 0 comments

    Thanks to sharing