Advertisement
im11

06. Barcode Generator

Oct 7th, 2021
1,231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. abcd = int(input())
  2.  
  3. d = abcd % 10
  4. c = (abcd // 10) % 10
  5. b = (abcd // 100) % 10
  6. a = abcd // 1000
  7.  
  8. print(d)
  9. print(c)
  10. print(b)
  11. print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement