DEV Community

Discussion on: Project in Python

Collapse
 
flodevelops profile image
FloDevelops

I don't think you need any global declaration in your code.
And quick tip, print("a", "b") prints "a b", two elements each made of string, separated by a space. While print("a" + "b") prints "ab", one element made of two concatenated strings (+).

I love learning Python too ! 😁

Collapse
 
eddiecoyote profile image
Eddie

Much thanks! This was super helpful.