Sort by

recency

|

1018 Discussions

|

  • + 0 comments

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

  • + 0 comments

    a = int(input()) b = int(input()) print(f'{a//b}\n{a/b}')

  • + 0 comments

    a=int(input()) b=int(intput()) c=a//b d=a/b print(c) print(d)

  • + 0 comments

    Great introduction to Python basics! It’s a small but important concept that forms the foundation for many future problems. Cricbet99 club

  • + 0 comments

    can anyone tell if this is necessary? if name == 'main':
    What is it's purpose, if you can print without also?