PYTHON_JOB_INTERVIEW Telegram 1174
This media is not supported in your browser
VIEW IN TELEGRAM
🐍 Печатай переменные с их именами без повторов — с помощью f‑строк и := (walrus operator)

Вместо этого:

print(f"x = {x}, y = {y}, z = {z}")


Пиши так:

print(f"{x=}, {y=}, {z=}")

x=42, y='hello', z=[1, 2, 3]


🔥 А ещё лучше — используем := (оператор моржа) для печати и присваивания одновременно:

print(f"{(n := len(mylist))=}")


Это одновременно сохранит len(mylist) в n и выведет его:


n=5
👍144🔥2



tgoop.com/python_job_interview/1174
Create:
Last Update:

🐍 Печатай переменные с их именами без повторов — с помощью f‑строк и := (walrus operator)

Вместо этого:


print(f"x = {x}, y = {y}, z = {z}")


Пиши так:

print(f"{x=}, {y=}, {z=}")

x=42, y='hello', z=[1, 2, 3]


🔥 А ещё лучше — используем := (оператор моржа) для печати и присваивания одновременно:

print(f"{(n := len(mylist))=}")


Это одновременно сохранит len(mylist) в n и выведет его:


n=5

BY Python вопросы с собеседований


Share with your friend now:
tgoop.com/python_job_interview/1174

View MORE
Open in Telegram


Telegram News

Date: |

Step-by-step tutorial on desktop: "Doxxing content is forbidden on Telegram and our moderators routinely remove such content from around the world," said a spokesman for the messaging app, Remi Vaughn. The creator of the channel becomes its administrator by default. If you need help managing your channel, you can add more administrators from your subscriber base. You can provide each admin with limited or full rights to manage the channel. For example, you can allow an administrator to publish and edit content while withholding the right to add new subscribers. Done! Now you’re the proud owner of a Telegram channel. The next step is to set up and customize your channel. A few years ago, you had to use a special bot to run a poll on Telegram. Now you can easily do that yourself in two clicks. Hit the Menu icon and select “Create Poll.” Write your question and add up to 10 options. Running polls is a powerful strategy for getting feedback from your audience. If you’re considering the possibility of modifying your channel in any way, be sure to ask your subscribers’ opinions first.
from us


Telegram Python вопросы с собеседований
FROM American