#13 Python Tutorial for Beginners | IDLE Previous Command | Clear Screen?

  Рет қаралды 796,613

Telusko

Telusko

Күн бұрын

Пікірлер: 310
@akashgupta_11
@akashgupta_11 6 жыл бұрын
for scrolling you can do cntrl + J. this will work
@yarlagaddapradeepkumar1560
@yarlagaddapradeepkumar1560 6 жыл бұрын
bayya i tried after else ,we typing means it wons organise..it just cleans screen to upward.. thats makes no use .. can u have any other idea ..for it
@mituldaniadventureJunkie
@mituldaniadventureJunkie 6 жыл бұрын
Thank you ! Was looking for that.
@shavashchannel
@shavashchannel 6 жыл бұрын
Thanks man!
@mayurmk7545
@mayurmk7545 5 жыл бұрын
Thank you so much
@vamsikasyaps127
@vamsikasyaps127 5 жыл бұрын
thank you
@feacefullyyy
@feacefullyyy 4 жыл бұрын
If you want the previous command or any other older commmand ... simply click the cursor on that line(s) and press enter ! There you go ! :)
@AY-uc5om
@AY-uc5om 4 жыл бұрын
Most underrated comment
@vikramsey
@vikramsey 4 жыл бұрын
That was helpful. Thanks.
@anuragsangale602
@anuragsangale602 4 жыл бұрын
Thanx
@PrashantKumar-xf6cx
@PrashantKumar-xf6cx 3 жыл бұрын
Thnx man 🥰
@imdv9748
@imdv9748 3 жыл бұрын
That was very much helpful thank you, your comment is underrated
@singhchetan96
@singhchetan96 4 жыл бұрын
i dont know how can one dislike these type of videos. great work navin reddy. love to watch and share your next videos. thanks man!
@anuzravat
@anuzravat 4 жыл бұрын
Believe It Or Not Its ClickBait
@caniget600subscriberswitho5
@caniget600subscriberswitho5 4 жыл бұрын
@@anuzravat please open up
@anuzravat
@anuzravat 4 жыл бұрын
@@caniget600subscriberswitho5 This is no command to clear screen in python till now
@shivangikumari5425
@shivangikumari5425 4 жыл бұрын
Because they never understand 🤪🤪😋😋😜😜😜
@MultiReview
@MultiReview 4 жыл бұрын
@@anuzravat becoz maybe they got better than Navin reddy (alian)
@deepanshumishra4568
@deepanshumishra4568 4 жыл бұрын
sir, jitni tareef karu utna kam your efforts are, just amazing :)
@yugandharsurya
@yugandharsurya 5 жыл бұрын
This channel is very useful to know most of the new technologies
@avinaskesarwani5281
@avinaskesarwani5281 4 жыл бұрын
ya bro
@shashikantmane1055
@shashikantmane1055 4 жыл бұрын
I have visited some channel.but honestly I would like to say that you are amazing.the way of talking is nice.Keep growing.Spread the knowledge.
@shankargope2475
@shankargope2475 Жыл бұрын
The things that really amaze me that you are not only just teaching the language but also revealing the small vital hacks that are really helpful when we get our hands on it👌. Thanks a lot, really appreciate that🙏
@shubhamvaidhy8331
@shubhamvaidhy8331 5 жыл бұрын
Yes sir that is I want yesterday when i was using IDLE that confusion comes in my mind.. Thanks for this.. Learning will fun using your Python tutorial I watched every lectr one by one ...😀
@mitalipurwar1436
@mitalipurwar1436 4 жыл бұрын
quarantine going well with your videos sir! absolutely enjoying studying!!
@shravanigupta5190
@shravanigupta5190 4 жыл бұрын
Yes absolutely u r right
@laraibrayeen
@laraibrayeen 4 жыл бұрын
Right
@sankarisubbiah7276
@sankarisubbiah7276 4 жыл бұрын
exactly
@varunjha7731
@varunjha7731 6 жыл бұрын
Great Video series !!! Hats off Sir looking forward to more videos on Python. I had the same exact question in my mind when I was learning Python today. Thanks, Sir !!!
@commando5134
@commando5134 4 жыл бұрын
no.1 work sir no one can compete with your this work. thanks a lot.......
@prasad4mvja
@prasad4mvja 4 жыл бұрын
1) Change IDLE configuration Options => Configure IDLE => General tab => Shell preferences => Auto-Squeeze min lines [50] and change 50 to a large count like 1000. 2) Execute command print(" " * 100) to clear screen
@aakashphoenix9309
@aakashphoenix9309 3 жыл бұрын
🥰🥰
@aakashphoenix9309
@aakashphoenix9309 3 жыл бұрын
Sir can u tell how to scroll down in idle
@SapareNaagraaj
@SapareNaagraaj Жыл бұрын
Tqq
@maheshpatil6232
@maheshpatil6232 4 жыл бұрын
Really Helpful videos till now. I suggested my cousin also Keep Going :)
@ismailabdow3844
@ismailabdow3844 5 жыл бұрын
thx sir watching from garissa-kenya ...4/7/2019.. 7:15 pm thnks alot ur videos are much better than wat am taught at university
@vidyakumari1466
@vidyakumari1466 4 жыл бұрын
To clear screen We have to import os module by writing import os And then use the in-built function os.system("cls") Finally you can keep it as an function cls Like this- import os def cls(): os.system("cls")
@vidyakumari1466
@vidyakumari1466 4 жыл бұрын
We can use it in editor
@aravindmarri9107
@aravindmarri9107 4 жыл бұрын
ctrl+F6 for new shell or restart the shell...!
@lomeshdaheria9960
@lomeshdaheria9960 4 жыл бұрын
Thanks buddy that really worked
@sanjeevkumar-iw2lz
@sanjeevkumar-iw2lz 4 жыл бұрын
brother please can u tell me for MacBook idle
@sheemashaik3624
@sheemashaik3624 Жыл бұрын
It's not working
@yashwanths7533
@yashwanths7533 11 ай бұрын
you can use the os module along with the system function to clear the screen import os def clear_screen(): if os.name == 'posix': # For Linux and macOS os.system('clear') elif os.name == 'nt': # For Windows os.system('cls') You can run this one time. Next you can start using this command "clear_screen()" to clear the screen as and when needed.
@richarddonald6320
@richarddonald6320 2 ай бұрын
It is very easy to learn from you Sir
@dineshkumargubba3688
@dineshkumargubba3688 6 жыл бұрын
Try This One. >>>import subprocess as sp >>>temp=sp.call('cls', shell=True)
@pushpendramangroliya2925
@pushpendramangroliya2925 6 жыл бұрын
Thank you for clear screen code of python prompt.
@roshan.handle
@roshan.handle 6 жыл бұрын
thank u sir for the above. But it clears only screen not our buffer(previously work is still remain in memory). Have u any code that clear python intrepreter screen as well as buffer memory?
@swathiyadati9680
@swathiyadati9680 5 жыл бұрын
after that what should we give?i didn't get you..
@puramdurgaprasad5894
@puramdurgaprasad5894 4 жыл бұрын
It's not working in python 3.7.0 version
@poorna685
@poorna685 4 жыл бұрын
why there are dislikes on this video,he just said what he needs to, are you people expected him to dance or do stunts in the video titled as "python tutorial for beginners",ridiculous people.
@yarlagaddapradeepkumar1560
@yarlagaddapradeepkumar1560 6 жыл бұрын
thq very much....bcz u understand the person who always typing the repeated ..stufff...thq veryy much for above......
@sreeharsha6383
@sreeharsha6383 4 жыл бұрын
Literally me: WTF.....! Its like spoonfeeding. Amazed : )
@bestengineering2774
@bestengineering2774 6 жыл бұрын
Thanks for this video. Been looking for previous command...
@akash6327
@akash6327 3 жыл бұрын
thanks now i can use this else i was using cmd
@abhi_7
@abhi_7 4 жыл бұрын
Thank you bro...!!!A.. great platform to learn python...🥰
@chitraaaaa
@chitraaaaa Жыл бұрын
hi...go to taskbar setting...automatic hide the taskbar in desktop mode..this will give unlimited lines in idle
@imtiazem
@imtiazem 3 жыл бұрын
thank you for making these videos.
@SakarSubedi
@SakarSubedi 4 жыл бұрын
I clear the python shell by using "Ctrl + Alt + L" in my Ubuntu terminal. Try 'Ctrl + L' in other OS if "Ctrl + Alt + L" doesn't work Alternative Option: def cls(): print(" " * 100) cls() # Call cls() whenever you want to clear the screen. This just prints 100 black lines and imitates as if it is clearing the screen.
@arhbaramov6296
@arhbaramov6296 2 жыл бұрын
U can put your cursor (wit arrow or with mouse) on any row, press ENTER 😋😂🥰 and you have a copy of that row in the current command line👍👌😋, btw thanks for the course ;)
@Uchiha_38
@Uchiha_38 Жыл бұрын
ty
@yarlagaddapradeepkumar1560
@yarlagaddapradeepkumar1560 5 жыл бұрын
thq very much , bcz we are always trying, but atleast u can save our time during practice
@thebunerikhan
@thebunerikhan 6 жыл бұрын
Ctrl + L also does kind of magic trick, it does not clear the screen but it starts a clean screen.
@mohammadadnan5988
@mohammadadnan5988 5 жыл бұрын
What do you mean by a clean screen? Are the values cleared for variables?
@archanaittaboina6547
@archanaittaboina6547 7 ай бұрын
Thank sir.I tried it for history-next(down arrow) also😊
@SachinYadav-wh7dm
@SachinYadav-wh7dm 3 жыл бұрын
Use Ctrl + arrow keys for scroll up and down
@rishabhgopalsoni8131
@rishabhgopalsoni8131 5 жыл бұрын
sir i want to learn app development ,please upload the videos of app development or provide the path of app development learning
@charithsai1750
@charithsai1750 3 жыл бұрын
love your videos and effort
@kasgeb.d
@kasgeb.d 6 жыл бұрын
"Alt+n" is good too
@basha132
@basha132 5 жыл бұрын
"Alt+n" is used from top to bottom if i want to use previous command what is the key i should use
@kartiky5765
@kartiky5765 5 жыл бұрын
@@basha132 alt+p
@mike_98058
@mike_98058 2 жыл бұрын
Thanks for this short, uiseful video. BTW, my aging ears did much better when I changed the playback speed to .75
@slonbeskonechen8310
@slonbeskonechen8310 3 жыл бұрын
Thank you! This is what I was missing....
@jaipalreddy7365
@jaipalreddy7365 6 жыл бұрын
this is useful for faster access of previous commands used
@abettertruth1198
@abettertruth1198 Жыл бұрын
thx a lot for help navin sir
@diptodey7152
@diptodey7152 4 жыл бұрын
awesome sir... u r really great
@sarthakverma3467
@sarthakverma3467 3 жыл бұрын
Thank you Sir for your efforts...#loveyou3000
@MeetSinojia7
@MeetSinojia7 4 жыл бұрын
I don't know if it works for IDLE on windows, but if you are using python interpreter in linux terminal, you can do: import os os.system('clear')
@venkatlakshmi1288
@venkatlakshmi1288 2 жыл бұрын
Yes it works 👍
@SatyendraJaiswalsattu
@SatyendraJaiswalsattu 6 жыл бұрын
for winows: type from os import system, name system('cls')
@mohammadadnan5988
@mohammadadnan5988 5 жыл бұрын
Doesn't work in IDLE.
@abhishekagrawal1076
@abhishekagrawal1076 4 жыл бұрын
amazing content
@atrichoudhury1777
@atrichoudhury1777 4 жыл бұрын
thank you very much for the series
@mubashirabbas5647
@mubashirabbas5647 4 жыл бұрын
sir which tool did you use for editing?plz ans
@arupmaji9229
@arupmaji9229 4 жыл бұрын
Thanks a lot for this tutorial sir 😊
@VictorMonday-lq3xs
@VictorMonday-lq3xs Жыл бұрын
Thanks very much, highly appreciated. Pls come again with the"idle" you enter up key to access the last elements. And also for the cmd. You press upr for?, Pls come up with this again
@suyashkumar0312
@suyashkumar0312 4 жыл бұрын
How do I change my keys to open task view I want to open task view with f3 plz help me
@Ram.k93
@Ram.k93 3 жыл бұрын
Great series for a beginner to learn python
@sakash23
@sakash23 4 жыл бұрын
sir which software u use for editing the videos
@gupta.aditya
@gupta.aditya 4 жыл бұрын
Repeat a previous command ( Alt + p ) works in python shell but it doesn't work in new file.
@charancharan2417
@charancharan2417 6 жыл бұрын
We don't have command but we can skip no of lines by print(" "*20) It will take you to 20 lines after the last command you were. print(" "*30) It will take you to 30 lines from your last line
@vinamrajha1571
@vinamrajha1571 4 жыл бұрын
How can we access this YEN symbol ?
@deepaksaraswat1981
@deepaksaraswat1981 5 жыл бұрын
how do u save prograams which can be reused as scripts in python shell ?
@shortcooktelugu6412
@shortcooktelugu6412 4 жыл бұрын
Ni ayya, you should include this, in your first video of this series
@jayanthg3777
@jayanthg3777 4 жыл бұрын
Sir u r great ....how u know these type of codings..
@Kennerdoll
@Kennerdoll 4 жыл бұрын
what software do you use for editing?
@vikasraj3203
@vikasraj3203 2 жыл бұрын
To clear the python shell we use this >>> import os >>> os.system( 'cls' )
@vijaymalviya23
@vijaymalviya23 4 жыл бұрын
Fn + up arrow is already shortcut key for the previous command
@adviksingh8760
@adviksingh8760 6 жыл бұрын
import os try: os.system("cls") # For Windows except: os.system("clear") # For Linux and Unix
@dishantkumbhar8822
@dishantkumbhar8822 4 жыл бұрын
What happens??
@adviksingh8760
@adviksingh8760 4 жыл бұрын
@@dishantkumbhar8822 it will clear the screen
@dishantkumbhar8822
@dishantkumbhar8822 4 жыл бұрын
Thnks man!
@bmguitarhub6135
@bmguitarhub6135 4 жыл бұрын
not working
@bmguitarhub6135
@bmguitarhub6135 4 жыл бұрын
not working... it prints 0
@mdehsanulhaque9186
@mdehsanulhaque9186 4 жыл бұрын
i am using IDLE softare and for project it is necessary to install a new software ( not installed pycharm)
@moorthyy27
@moorthyy27 5 жыл бұрын
thanks, good video bro
@cu9366
@cu9366 6 жыл бұрын
great video sir
@akashjadhav8450
@akashjadhav8450 4 жыл бұрын
Can u help me out with python decorators in details, it is more often asked questions in interview
@firesk1461
@firesk1461 6 жыл бұрын
Yea now UpArrow choses the last cmd but apparently my CTRL suddenly is IDK forced on, cant write normally, eg. pressing p shows up print dialogue, pressing s tries to save, etc..
@vergilnelo
@vergilnelo 4 жыл бұрын
i use ipython in linux clear command and up arrow works by default, ipython runs in terminal so may be if you use python in cmd it may work idle i am not sure
@rajkelawala28
@rajkelawala28 5 ай бұрын
To clear a screen we can use this: import os x = os.system("clear") # Linux/Mac x = os.system("CLS") # For windows
@Happiness_mattersss
@Happiness_mattersss 3 жыл бұрын
I m new to Python n coding, so i just want to clear a confusion, IDLE is command Promt or Pycharm. Or is it the diffrent thing? Pls Help
@buvaneswarin4200
@buvaneswarin4200 Жыл бұрын
Sir.....In my idle if I click p then it's asking whether to print the screen....if I click just o it's asking options to open the saved folders.... I don't know what to do sir ...I have my exams coming and I am not able to practice any prgms...pls help me sir
@chufflechannel8812
@chufflechannel8812 3 жыл бұрын
To clear the screen use this import os import time # for windows # os.system('cls') os.system("ls") time.sleep(2) # Ubuntu version 10.10 os.system('clear')
@kartiktyagi5234
@kartiktyagi5234 4 жыл бұрын
Sir couldn't find options for reverse settings in spyder anaconda
@Saha121-h6y
@Saha121-h6y 5 жыл бұрын
I will subscribe within today
@umairahmed2459
@umairahmed2459 5 жыл бұрын
import os os.system('clear') that is the solution in my opinion :)
@bmguitarhub6135
@bmguitarhub6135 4 жыл бұрын
not working
@joematv
@joematv 4 жыл бұрын
you've mentioned all the questions on my mind hahaaha
@thuonganga5605
@thuonganga5605 2 жыл бұрын
To clear screen in the REPL/IDLE, press CTRL + L on Linux and MacOS
@madanjain7553
@madanjain7553 4 жыл бұрын
Sir mere sofware m menu bar show nhi hori or altr command (code) run nhi krre kya kiya ja skta hai
@aswinighosh928
@aswinighosh928 5 жыл бұрын
very helpful
@tokiahmed7865
@tokiahmed7865 10 ай бұрын
Sir , The changes in previous history has not occurred during my practice
@aniruddhadhandar
@aniruddhadhandar 3 жыл бұрын
It is possible just simply ⏬👇 >>> import os >>> os.system('cls') And your screen will be clear...
@harmanpreetsingh1501
@harmanpreetsingh1501 4 жыл бұрын
i know a technique just go to previous command using up key and press enter and it will give you the previous statement
@richarddonald6320
@richarddonald6320 2 ай бұрын
import os os.system('cls || clear') This command will clear the messages in terminal
@madhuribendale6532
@madhuribendale6532 5 жыл бұрын
I learned from ur videos but how can I get certification.
@swathiyadati9680
@swathiyadati9680 5 жыл бұрын
how yea ?
@harpreet_dhiman
@harpreet_dhiman 4 жыл бұрын
When I run a code on PyCharm, it shows 'Python was not found but can be installed from Microsoft store' even after installing Python. How can I resolve this issue?
@piyushkhanduri2905
@piyushkhanduri2905 3 жыл бұрын
there is nothing like clearing but there is a key to reopen the shell i.e (ctrl + f6) by pressing these keys together it will work .
@suganthimurali516
@suganthimurali516 Жыл бұрын
Bro but it is just restarting, It's not moving up
@rptech6902
@rptech6902 3 жыл бұрын
Sir mare me uper koi option nahi ata isa kyo?? PLZZ reply
@kunalkumar7404
@kunalkumar7404 4 жыл бұрын
Hello sir , how to make title bar visible ...
@1112sravani
@1112sravani 6 жыл бұрын
cls isn't working in my command prompt.. please help me
@uditanshuverma7149
@uditanshuverma7149 4 жыл бұрын
First exit the python in command prompt, use exit(),then type cls
@thomachanrj9064
@thomachanrj9064 6 жыл бұрын
Thanks a lot Sir
@nikitaagarwal880
@nikitaagarwal880 6 жыл бұрын
I have not understood whatever uhh r explaining in this video..Kindly help me....
@YogeshKumar-ow4rb
@YogeshKumar-ow4rb 6 жыл бұрын
he is trying to say that "U can use the previously typed command with the help of a shortcut key without typing it again in the Python IDLE" for Eg:- if u type >>>print("Hello World") 'Hello World' if u want to use this again instead of typing it again u can simply use "Alt + P"
@PythonisLove
@PythonisLove 5 жыл бұрын
ugh! u suck at python,more than me ?
@swathiyadati9680
@swathiyadati9680 5 жыл бұрын
@@YogeshKumar-ow4rb yea and we can also use up arrow key too
@saurabhhchavan
@saurabhhchavan 5 жыл бұрын
@@YogeshKumar-ow4rb thanku so much sir💕
@slobodantajisic2762
@slobodantajisic2762 5 жыл бұрын
It is not possible to clear Python IDLE shell without some external module integration. If you really want to get a blank pure fresh shell just close the previous shell and run it again.
@Saikiran-qb2yo
@Saikiran-qb2yo 5 жыл бұрын
In Python 3.7 scrolling option is provided
@RoyBT
@RoyBT 5 жыл бұрын
yes.
@krishna.yaadav
@krishna.yaadav 6 жыл бұрын
type python in cmd and u will get same idle in cmd.... and you you can import os and type script os.system('cls') .... for mac or linux os.system('clear')
@pujanrajrai4930
@pujanrajrai4930 6 жыл бұрын
that doesnot work in macos
@vikas-eh5fv
@vikas-eh5fv 5 жыл бұрын
Can you tell set function uses
@endorse8290
@endorse8290 2 жыл бұрын
How can we get in virtual studio code?
@just_a_living_being
@just_a_living_being 6 жыл бұрын
Thank you Sir 😊
@OneShotOneKill924
@OneShotOneKill924 4 жыл бұрын
Nice
@riaz_ay
@riaz_ay 5 жыл бұрын
Press cntrl+n Then click run And click python shell
@Even_cats_smile
@Even_cats_smile 2 жыл бұрын
nice I'M NOT THE ONLY ONE
@abhishekagrawal1076
@abhishekagrawal1076 4 жыл бұрын
Still unable to clear the IDLE, Do i need to close and relaunch, or any other solution
#14 Python Tutorial for Beginners | Python BitWise Operators
12:42
Dictionary in Python
12:24
Telusko
Рет қаралды 1,4 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 61 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 17 МЛН
10 Important Python Concepts In 20 Minutes
18:49
Indently
Рет қаралды 371 М.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 235 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 929 М.
#20 Python Tutorial for Beginners | While Loop in Python
12:43
Telusko
Рет қаралды 1,6 МЛН
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 336 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 292 М.
Python for Beginners - Learn Coding with Python in 1 Hour
1:00:06
Programming with Mosh
Рет қаралды 19 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 61 МЛН