Quick actions

cmd+k|ctrl+k

Navigation

Languages

numbers ( exclude on avoiding type errors with string() function

Snippet info

Language

Python

Visibility

public

Author

ericmash53

Created

2025-12-25T01:25:48.542124Z

Updated

2025-12-25T01:25:48.542124Z

age = 3
message ="Erick " + str(age) + " old"
print(message)
print(type(age))
INFO