0
Hello World!
iNeed Help In Python. Anyone willing to assist? Thanks In Advance.
3 odpowiedzi
+ 1
What exactly do you need help with? If you want help with printing "Hello World!" then here it is:
```python
print("Hello World!")
```
print is a function, a function always has () in front of it when you use it. "Hello World!" is a string, the print() function will print this string to the terminal
+ 1
I think you should read the documentation or tutorials for this kind of stuff
Docs:
arithmatic: https://python-reference.readthedocs.io/en/latest/docs/operators/
math module: https://docs.python.org/3/library/math.html
Tutorials:
arithmatic: https://www.w3schools.com/python/python_operators.asp
math: https://www.w3schools.com/python/python_math.asp
0
Math Equations