Guest User

Untitled

a guest
Feb 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. N = round(1.5)
  2. print(N)
  3. # 出力は2
  4.  
  5. N = round(2.5)
  6. print(N)
  7. # 出力は2 (3って出力して欲しい)
Add Comment
Please, Sign In to add comment