Quick actions

cmd+k|ctrl+k

Navigation

Languages

Format Strings

Snippet info

Language

Python

Visibility

public

Author

ak.amita28

Created

2026-04-07T09:22:14.543831Z

Updated

2026-04-07T09:22:14.543831Z

name = 'Amita'
age = 37
print('Hi' + ' ' + name + '!!!' + ' ' + 'You are' + ' ' + str(age) + ' ' 'years old')
print(f'Hi {name}!!! You are {age} years old.')

print('Hi {}!!! You are {} years old.'.format ('Amita', '37'))












INFO