import time
def countdown(n) :
while n > 0:
print (n)
n = n - 1
if n ==0:
print('BLAST OFF!')
countdown(50)
هو يقول لى مسافه تقريبا لكن انا لا اعرف كيف
import time
def countdown(n) :
while n > 0:
print (n)
n = n - 1
if n ==0:
print('BLAST OFF!')
countdown(50)
هو يقول لى مسافه تقريبا لكن انا لا اعرف كيف
في بايثون لازم تهتم بعمل الـ Indentation
اي المسافات كالتالي:
import time
def countdown(n) :
while n > 0:
print (n)
n = n - 1
if n ==0:
print('BLAST OFF!')
countdown(50)