The functions, at least until now, that are not working for me are floor, ceil and sqrt.
The rest of the text you can ignore, it´s just I am going in a tutorial
Some python functions are not working
Python is indentation sensitive. The whitespace you have before your print function calls is causing an error. It’s also helpful to read the error message that python gives you in the console output, eg:
File "test.py", line 2
print('foo')
^
IndentationError: unexpected indent
Since I’m new at this, I couldn’t understand your explanation, if you could explain it to me in an easier way I would appreciate, and I you will leave another image
If you take a look at documentation about python’s floor function, you’ll find it’s in the math
module: https://www.tutorialspoint.com/python/number_floor.htm. The best way to find out these things is to look at the error message (“Traceback…” in the console at the bottom) and do an online search, or simply look up “python ceil”.
Hi, I am back cuz my input function just doesn´t work and I don´t know how.
E.g.: name = input('Enter your name: ')
print('Hello ’ + name)
And then when it shows me in build I put the name and doesn´t print anything.
The basic answer to that lies in this post :-
but looking at your previous posts, it seems you are an absolute beginner to programming. You might want to actually learn how to try using a proper terminal (like command prompt in Windows, bash on linux/macos) to execute your programs. Once you can properly execute scripts in an external terminal, you can better understand how to use Build systems.