diff options
Diffstat (limited to 'challenge-042/kivanc-yazan/python3/ch-1.py')
| -rwxr-xr-x | challenge-042/kivanc-yazan/python3/ch-1.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/challenge-042/kivanc-yazan/python3/ch-1.py b/challenge-042/kivanc-yazan/python3/ch-1.py new file mode 100755 index 0000000000..1068782617 --- /dev/null +++ b/challenge-042/kivanc-yazan/python3/ch-1.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 + +# Write a script to print decimal number 0 to 50 in Octal Number System. +for i in range(51): + print('Decimal', i, '= Octal', oct(i)) |
