Posts by aFrandite • 11 points
1 post
-
1
votes2
answers51
viewsA: Calling function teething variable
You could do: def test(variavel): variavel=variavel+1 if variavel==3: print(variavel) test(2)
1 post
1
votes2
answers51
viewsYou could do: def test(variavel): variavel=variavel+1 if variavel==3: print(variavel) test(2)