Quick actions

cmd+k|ctrl+k

Navigation

Languages

format

Snippet info

Language

Python

Visibility

public

Author

tony

Created

2018-09-03T11:18:28Z

Updated

2018-09-03T11:59:24Z

# https://docs.python.org/3/library/string.html#format-string-syntax

a = 'tony'
b = 'good'

c='{0} is {1}'

print(c.format(a,b))
INFO