Code for Python Programming Language

in python •  6 years ago 

def bilgilerigoster(ad="Bilgi Yok",soyad="Bilgi Yok",numara="Bilgi Yok"):
print("Ad: ",ad,"Soyad: ",soyad,"Numara: ",numara)
bilgilerigoster()
bilgilerigoster("Mahmut Enes","Tanyeri")

print("-"*50)

def toplama(a,b,c):#toplama işlemi için 3 argüman verildi.
print(a+b+c)
toplama(3,4,5)#toplama işleminin uygulanacaği sayılar.

print("-"*50)

def toplama(*parametreler):
toplam=0
print ("Parametreler: ",parametreler)
for i in parametreler:
toplam += i
return toplam
print (toplama(3,4,5,6,7,8,9,10))

print("-"*50)

def toplama(*parametreler):
toplam=0
print ("Parametreler: ",parametreler)
for i in parametreler:
toplam += 1
return toplam
print(toplama(1,2,3))

print("-"*50)

def toplama(*parametreler): # Artık parametreler değişkenini bir demet gibi kullanabilirim.
toplam = 0 # Parametreleri topluyor.
print("Parametreler:",parametreler)
for i in parametreler:
toplam += i
return toplam
print(toplama(1,2,3,4,5,6,7,8,9,10))

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Hello! Your post has been resteemed and upvoted by @ilovecoding because we love coding! Keep up good work! Consider upvoting this comment to support the @ilovecoding and increase your future rewards! ^_^ Steem On!

Reply !stop to disable the comment. Thanks!

thank you