Last active
October 20, 2017 11:17
-
-
Save dencorg/b380cc8c55186f8984a610acc85a7f26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
num = int(input("X: ")) | |
# έξοδος με μηδέν | |
while num != 0: | |
print(1/num) | |
num = int(input("X: ")) | |
# έξοδος με break | |
while True: | |
num = int(input("X: ")) | |
if num == 0: | |
break | |
print(1/num) | |
# Fibonacci sum | |
def fib(a, b): | |
sum = 0; | |
while a < 4 * (10 ** 6): | |
sum += a | |
a, b = b, a + b | |
return sum | |
a, b = 0, 1 | |
print(fib(a, b)) | |
# 0 μέχρι το 9 | |
for i in range(10): | |
print(i, end=" ") | |
# 5 μέχρι 45 (βήμα 10) | |
for i in range(5,50,10): | |
print(i, end=" ") | |
# Κ-α-λ-η-μ-έ-ρ-α- | |
for c in "Καλημέρα": | |
print(c, end="-") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment