TransWikia.com

Что означает %s и % в аргументах функции в Django?

Stack Overflow на русском Asked by Captain Mountain on November 30, 2021

def detail(request, question_id):
    return HttpResponse("You're looking at question %s." % question_id)

def results(request, question_id):
    response = "You're looking at the results of question %s."
    return HttpResponse(response % question_id)

def vote(request, question_id):
    return HttpResponse("You're voting on question %s." % question_id)

2 Answers

def detail(request, question_id):
return HttpResponse(f"You're looking at question {question_id}.")

Да, это такой синтаксис Python. Приятнее и быстрее будет работать с f-строками. И читабельнее.

Answered by truemaks on November 30, 2021

%s означает что на место этого знака нужно вставить строку, последующая % - та строка которая должна быть вместо %s

Answered by Алексей Бобрович on November 30, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP