Quick actions

cmd+k|ctrl+k

Navigation

Languages

Display Name

Snippet info

Language

Python

Visibility

public

Author

pavanzen3

Created

2024-10-04T13:46:39.336118Z

Updated

2024-10-04T13:48:11.554806Z

first = 'test'
last = 'script'
full = first + last
print(full)


full_space = first + " " + last
print(full_space)
INFO