Focus mode

Python Temel

Comment-Fonksiyon

Fonksiyonlara Açıklama Yazmak


def square(x):
    
    res = x * x
    
    return res


def square(x):
    """
    x'in karesini hesaplar
    """
    return x * x


Hackerrank challenge

Comments

You need to enroll in the course to be able to comment!