Juice99
@Juice99
I made this for a fun little project. I don't expect it to get used for its purpose but if you have any suggestions for features I could add that woul
Python
Hi I'm new to programming and I'm trying to make a solitaire game but it keeps coming up with this error message:
error
The show() function is intend
Python
delonbest The error message invalid literal for int() with base 10 would seem to indicate that you are passing a string that's not an integer to the int() function . In other words it's either empty, or has a character in it other than a digit. You can solve this error by using Python isdigit() method to check whether the value is number or not. The returns True if all the characters are digits, otherwise False . The other way to overcome this issue is to wrap your code inside a Python try...except block 2 years ago
This has been fixed, I originally had: x = int();y = int()
but I needed: x = int(x); y = int(y)
https://Function-testing.juice99.repl.run
I am new t
Python
Vandesm14 You are printing x+y, not returning x+y, which is what you want.
So you want: return x + y4 years ago