How To Take Input in Sublime Text Editor | 2023 Tutorial

preview_player
Показать описание
🖥️ 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"],
}
}
]
}
Рекомендации по теме
Комментарии
Автор

I just changed "timeit": false, and it worked for me. Thanks a lot

FranciscoMontero-nb
Автор

Thank you so much, this was quick and worked nicely!!

henryvasquez
Автор

Thank you bro. It's useful for me

saidanasxonsaydullayev
Автор

Is this code also works for c programming 1:13 reply as soon as possible??

mkartsandfun
Автор

How to set up 😢 after set up its not working in my laptop 🙁

naresh
Автор

can u tell me how to take input in sublime text with C++ PLSS HELP ME BROOOO

TSteveNY
Автор

hi! how are you? I am doing everything as you said in the video but when I go to tools and then press build system, I press my built system and when I run my code it just opens a window and it has a line(that ticking one which we use to write) and it doesn't let me do anything. also my sublime text editor doesn't let me use pandas. I don''t know what to do. reason I installed sublime text is that vscode was running so slow that it sometimes needed 10 seconds to run simple hello world. what would you do in my place? btw you have great youtube channel I think you deserve 100s of thousands of followers. good luck:)

sabakhanishvili