Idk how to do anything
me trying but failing
dont spam
read some tutorials
Python has data types functions, like str
, and str converts a number to a string (or anything else except a string) and int
is the opposite! it converts a string (or anything else except a number) to a number!
#Python_Is_EZ_But_It_Is_Boring
#Python_Is_EZ_And_it_is_NOT_Boring @ZDev1
That depends on what you do with it @ZDev1
@InvisibleOne um
last time i used python was before 4 months, to create a flask web server to my cousin, because he wants to share it with his class lmao
I'm sure you can do something. You just need further practice and some help with a side of a little self-confidence. I'm sure you can code amazingly (better than me anyway) :D
Try learning CSS or somethin.
Hello @LeviBernard,
It would be correct if you put this in the ask section. Also the error is probably you have to do this:
for num in numbers:
if int(num) >=0:
print(num, end=" ")
I hope this helps!
try putting int(num)
instead
Solution
try putting
int()
to the num instead, since you can't get numbers with strings.like that.
That should work