Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos by expert instructors. Start Now!

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join 11 million other learners and get started learning Python for data science today!

Good news! You can save 25% off your Datacamp annual subscription with the code LEARNPYTHON23ALE25 - Click here to redeem your discount

String Biçimlendirme


Python, yeni biçimlendirilmiş dizeler oluşturmak için C tarzı dize biçimlendirmesini kullanır. "%" operatörü, "tuple" (sabit boyutlu bir liste) içinde tutulan bir değişken setini, normal metinle birlikte "%s" ve "%d" gibi "argüman belirleyicileri" içeren bir format dizesiyle biçimlendirmek için kullanılır.

Diyelim ki içinde kullanıcı adınız olan "name" adlı bir değişkeniniz var ve o kullanıcıya bir selamlama yazdırmak istiyorsunuz.

# Bu, "Hello, John!" çıktısını verir
name = "John"
print("Hello, %s!" % name)

İki veya daha fazla argüman belirleyicisi kullanmak için bir demet (parantez) kullanın:

# Bu, "John is 23 years old." çıktısını verir
name = "John"
age = 23
print("%s is %d years old." % (name, age))

Bir dize olmayan herhangi bir nesne de %s operatörü kullanılarak biçimlendirilebilir. Bu nesnenin "repr" yönteminden dönen dize, bir dize olarak biçimlendirilir. Örneğin:

# Bu, "A list: [1, 2, 3]" çıktısını verir
mylist = [1,2,3]
print("A list: %s" % mylist)

Bilmeniz gereken bazı temel argüman belirleyicileri şunlardır:

%s - Dize (veya sayılar gibi bir dizge temsiline sahip herhangi bir nesne)

%d - Tamsayılar

%f - Ondalık sayılar

%.<hane sayısı>f - Noktadan sağa sabit miktarda hane ile ondalık sayılar.

%x/%X - Onaltılık gösterimdeki tamsayılar (küçük/büyük harf)

Alıştırma

Aşağıdaki söz dizimini kullanarak veriyi yazdıran bir format dizesi yazmanız gerekecek: Hello John Doe. Your current balance is $53.44.

data = ("John", "Doe", 53.44) format_string = "Hello" print(format_string % data) data = ("John", "Doe", 53.44) format_string = "Hello %s %s. Your current balance is $%s." print(format_string % data) #test_output_contains("Hello John Doe. Your current balance is $53.44.", no_output_msg= "Make sure you add the `%s` in the correct spaces to the `format_string` to meeet the exercise goals!") test_object('format_string') success_msg('Great work!')

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join over a million other learners and get started learning Python for data science today!

Previous Tutorial Next Tutorial Take the Test
Copyright © learnpython.org. Read our Terms of Use and Privacy Policy