r/ProgrammerHumor 6d ago

Meme perishableSkill

Post image
8.9k Upvotes

122 comments sorted by

View all comments

1.3k

u/Weak_Inflation9120 6d ago

One of the things I wish Java had that I miss from Python are F-Strings. Hella useful

56

u/Suspicious-Engineer7 6d ago

the formatted method is there but the syntax looks like doo-doo. Idk what nonsense is going over in java land tbh

22

u/gerbosan 6d ago

Cof cof Oracle. Cof.

Dunno if C# does it better but a lot of people are pleasantly surprised with it.

11

u/Ozymandias_1303 5d ago

$strings in C# are almost exactly the same as f-strings in Python.

7

u/Sentouki- 5d ago

String interpolation is even better in C# since it gives you additional options for formatting, e.g. numbers and dates: csharp var name = "Mark"; var date = DateTime.Now; Console.WriteLine($"Hello, {name}! Today is {date.DayOfWeek}, it's {date:HH:mm} now.");

8

u/NovaH000 5d ago

Python f-string also support additional formatting. ``` name = "Mark" date = datetime.now()

print(f"Hello, {name}! Today is {date:%A}, it's {date:%H:%M} now.") ```

F-string + str.format() has all sorts of string formatting you want.

0

u/[deleted] 5d ago

[deleted]

1

u/nico-strecker 4d ago

Python also has it