Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Beginner Problem python 2.7
#2
If you want to see something in console, you have to use print().

def sum_two_or_more(x1, x2, *args):
    if args:
        second = sum_two_or_more(x2, *args)
    else:
        second = x2
    return x1 + second # Pay attention to the indentation

print sum_two_or_more(1, 2)

print(sum_two_or_more(1, 2)) # <- Python3
I recommend you to use/learn python3.
Reply


Messages In This Thread
Beginner Problem python 2.7 - by Jonathan_levy - Jul-04-2018, 08:29 PM
RE: Beginner Problem python 2.7 - by gontajones - Jul-04-2018, 08:44 PM
RE: Beginner Problem python 2.7 - by ichabod801 - Jul-04-2018, 08:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  small beginner problem FelixReiter 2 1,873 Nov-17-2020, 03:26 PM
Last Post: FelixReiter
  Beginner having Syntax Error problem RyanHo 3 2,391 Sep-10-2020, 08:33 AM
Last Post: cnull
  Beginner, my recursion returns None, and related problem zpacemanzpiff 2 1,818 Jul-02-2020, 04:25 AM
Last Post: zpacemanzpiff
  Beginner problem, replace function with for loop Motley_Cow 9 4,661 Sep-13-2019, 06:24 AM
Last Post: Motley_Cow
  Beginner problem in python script Cedmo 3 2,795 Jul-04-2019, 08:22 PM
Last Post: Cedmo
  Beginner Problem python 2.7 Jonathan_levy 2 2,734 Jul-03-2018, 11:58 AM
Last Post: gruntfutuk
  problem about 'if' and 'for' from a python beginner yzjnpu 3 3,071 Jun-26-2018, 03:47 PM
Last Post: buran
  Beginner. Calculator problem ¯\_(ツ)_/¯ stykus1992 0 2,360 Feb-15-2018, 11:01 AM
Last Post: stykus1992

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020