filmov
tv
How To Take Input in Sublime Text Editor | 2023 Tutorial
![preview_player](https://i.ytimg.com/vi/qSEadecFKC4/maxresdefault.jpg)
Показать описание
🖥️ How to take input in Sublime Text 🖥️
🖥️Paano mag input sa sublime text 🖥️
------------------------
STEPS:
- Install Package Control from Command Palette (Ctrl + Shift + P)
- Install Terminus from Package Control
- Create a New Build System ( Go to Tools - Build System - New Build System)
- Copy the code below
- Ctrl + S to save and save it with .sublime-build extension
- Create a code and run it with Ctrl + B
---------------------------------------
HERE'S THE CODE
---------------------------------------
{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"focus": true,
"timeit": true,
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"env": {"PYTHONIOENCODING": "utf-8"},
"windows": {
"cmd": ["python", "-u", "$file"],
},
"variants":
[
{
"name": "Syntax Check",
"cmd": ["python3", "-m", "py_compile", "$file"],
"windows": {
"cmd": ["py", "-m", "py_compile", "$file"],
}
}
]
}
🖥️Paano mag input sa sublime text 🖥️
------------------------
STEPS:
- Install Package Control from Command Palette (Ctrl + Shift + P)
- Install Terminus from Package Control
- Create a New Build System ( Go to Tools - Build System - New Build System)
- Copy the code below
- Ctrl + S to save and save it with .sublime-build extension
- Create a code and run it with Ctrl + B
---------------------------------------
HERE'S THE CODE
---------------------------------------
{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"focus": true,
"timeit": true,
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"env": {"PYTHONIOENCODING": "utf-8"},
"windows": {
"cmd": ["python", "-u", "$file"],
},
"variants":
[
{
"name": "Syntax Check",
"cmd": ["python3", "-m", "py_compile", "$file"],
"windows": {
"cmd": ["py", "-m", "py_compile", "$file"],
}
}
]
}
Комментарии