Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Juice99

@Juice99
Repls
Community
Juice99
Juice99
shared a Post
4 years ago
D&d stat rolling with python 3
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
D&D stat rolling
Python
Highwayman
Highwayman
Ask for their race and add the necessary bonuses to your rolls4 years ago
Juice99
Juice99
shared a Post
4 years ago
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
Card games
Python
delonbest
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
eco27
eco27
you can't convert 'HA ' to an int image4 years ago
Juice99
Juice99
shared a Post
4 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
Function testing
Python
Vandesm14
Vandesm14
You are printing x+y, not returning x+y, which is what you want. So you want: return x + y4 years ago