python-CSD-kursu/digit.order.py

6 lines
87 B
Python
Raw Normal View History

2023-05-20 19:01:58 +03:00
n = int(input('Bir sayı giriniz:'))
s = str(n)
for c in s:
print(c, end=' ')