print("Hello World!")
Hello World!
Here is python introduction
Python
is the one of the most popular general-purpose programming languages.
It is a multi-paradigm programming language.
Applications include -but not limited to- web development, software development, data analysis, automated tasksβ¦
It has a magnificent ecosystem of libraries and frameworks.
1- Python Interpreter
2- Running a Python Script from the Terminal
.py
3- Using a development environment
Some of them are PyCharm
, VSCode
, RStudio
and so on.
Usually Shift + Enter
or Ctrl + Enter
to send the command to shell
4- Jupyter Notebook
Browser environment for writing and running interactive Python code.
You can combine text and code cells to create a notebook.
Keyboard Shortcut | Description |
---|---|
Shift + Enter |
Send the cell to the kernel for execution |
Ctrl + Enter |
Run the cell and advance to the next cell |
Enter |
Edit the cell |
Esc |
Stop Editing the cell |
H |
Help |
M |
Cell to Markdown (text) |
Y |
Cell to code |
:::
print()
function.Hello World
:print("Hello World!")
Hello World!