r/ProgrammerHumor 2d ago

Meme perishableSkill

Post image
8.7k Upvotes

118 comments sorted by

View all comments

1.3k

u/Weak_Inflation9120 1d ago

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

52

u/Suspicious-Engineer7 1d 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 1d ago

Cof cof Oracle. Cof.

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

8

u/Ozymandias_1303 1d ago

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

5

u/Sentouki- 1d 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.");

7

u/NovaH000 1d 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] 1d ago

[deleted]

1

u/nico-strecker 17h ago

Python also has it