Quick actions

cmd+k|ctrl+k

Navigation

Languages

Emmanuel practices

Snippet info

Language

Python

Visibility

public

Author

emmanuel00224

Created

2025-05-20T17:08:13.758244Z

Updated

2025-05-20T17:11:57.464476Z

# formatted string

name = 'Emmanuel'
age = 35

print('hi {1}. you are {0} years old'. format(name, age))
INFO