Quick actions

cmd+k|ctrl+k

Navigation

Languages

250509 f

Snippet info

Language

Python

Visibility

public

Author

aylinil

Created

2025-05-09T12:10:04.436099Z

Updated

2025-05-09T12:18:02.53239Z

x = "hello" + "world"
print(x)

x = "hello" + str(1)
print(x)

x = "hello" + str(1)
print("hello".format({0}), 1)

x = "hello" + str(1)
print("hello".f({0}), 1)
INFO