Quick actions

cmd+k|ctrl+k

Navigation

Languages

Practice1

Snippet info

Language

Python

Visibility

public

Author

matrix19r

Created

2025-12-14T14:24:01.765591Z

Updated

2025-12-14T14:24:01.765591Z

# formatted strings

name = 'Jhonny'
age = '55'

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