Creating your own interactive Python interpreter | Python tricks

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Great stuff! I like your way of creating code without reading and copying anywhere...I am also loving your Iterators course... learning a lot!

maxvinella
Автор

I am starting to think that being Dutch is mandatory to properly teach Python.

archstampton
Автор

This is really a very nice video to learn many stuff in python. I am very new to python. I was wondering if we can embed your code in a webpage and people can access this from anywhere to run simple codes from any mobile or desktop irrespective of their device having python installed or not. Basically can we make this interpreter code into a web app.

seshashayanaashwathama
Автор

Why does this have so less likes.
I loved this tutorial.


Just a few things. Do you know I can enable my arrow keys?
Like it is throwing errors if I use them to go back, or go up to see the previous command.


Also, how do we get in suggestions?
I mean, if a press a tab, it shows me all possible combinations.


Thanks for this anyway.

parthkrishna
Автор

simply channel to subscribe! thanks and please do more!

vxsniffer
Автор

super tutorial, but how to make it perform loops like for Or while?

ahhumofficial
Автор

Hi. How would you handle partial expressions ( ie having "for i in range(10): \n print(i)" ). Read: How you separate "not a complete expression" from "syntax error"?

richard
Автор

Please make a video how to embed python in kivy app to run python script in it
I searched the whole internet i did not get the answer now you are my last
I want to make something like python code editor app using i want the basic idea how can i do it

rohitkr.
Автор

how to create cell that can execute multiple statement

abhishektaparia
Автор

Python's in-built help() function should just return a link to your channel.

md
Автор

How much time did you take to have a phd?

andrejhatzi
Автор

Me be like:
inputcode = input()

print (exec(inputcode))

emacipadung
Автор

So you show how to write a Python Interpreter using Python? Python is an iterpreter programming language so a Python Interpreter is required to run the interpreter itself.

underscore-dash