First time here? Check out the FAQ!

rimcrazy's profile - activity

2020-04-02 03:34:26 -0500 received badge Popular Question (source)
2020-04-02 03:34:26 -0500 received badge Notable Question (source)
2020-04-02 03:34:26 -0500 received badge Famous Question (source)
2020-01-14 21:59:08 -0500 received badge Student (source)
2020-01-14 21:59:05 -0500 received badge Self-Learner ( source )
2020-01-14 21:59:05 -0500 received badge Teacher ( source )
2020-01-14 21:59:04 -0500 marked best answer print not giving same results as other IDE's

So I've had wings for a while but I'm just now getting into learning python. I've been going over some simple tutorials on LinkedIn using wings, Visual Studio Code and Pycharm as I'm trying to also see the different features of various IDE's. On about the 3rd tutorial I'm seeing quite a difference between the Wing output debug window vs Visual Code and PyCharm. Here is the simple code:

#
# Example file for working with functions
#

# define a basic function
def func1():
    print("I am a function")

# function that takes arguments
def func2(arg1,arg2):
    print(arg1," ",arg2)

# function that returns a value
def cube(x):
    return x*x*x

# function with default value for an argument
def power(num, x=1):
    result = 1
    for i in range(x):
        result = result * num
    return result

#function with variable number of arguments
def multi_add(*args):
    result = 0
    for x in args:
        result = result + x
    return result

#func1()
#print (func1())
#print (func1)
func2(10,20)
print (func2(10,20))
print (cube(3))
# print (power(2))
# print (power(2,3))
# print (power(x=3, num=2))
#print (multi_add(4,5,8,9,55,2,98))

Here is the output from Wings: image description

Here is the output from Visual Studio Code: image description

Here is the output from PyCharm: image description

Being a noob to Wings my guess is I've configured something incorrect or I'm doing something wrong but the outputs are quite different. I cannot believe Wings is wrong but I also don't know the error of my ways as my experience with Wings is quite limited. Any help would be appreciated.

2020-01-14 21:58:23 -0500 answered a question print not giving same results as other IDE's

Never mind.... figured it out. Wings was set to use Python 2.7 while Visual Code and PyCharm were using Python 3.8. Ch

2020-01-14 21:58:23 -0500 asked a question print not giving same results as other IDE's

print not giving same results as other IDE's So I've had wings for a while but I'm just now getting into learning python