Spoken tutorial iit bombay python

  • Difference between Python and IPython.

    Is there any significant difference between python and Ipython? If yes, then what is the difference? If no, then can I use Jupyter while practice?

    00-01M 0-10S

    Sept. 18, 2022, 6:19 p.m. wasiqmehraj

  • ipyton is not installing showing error

    ipyton is not installing   it is showing "Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 'C:\\Program Files\\Python36\\Lib\\site-packages\\numpy'Consider using the `--user` option or check the permissions.You are using pip version 18.1, however version 21.3.1 is available."You should consider upgrading via the 'python -m pip install --upgrade pip' command. please guide me.

    00-01M 0-10S

    Sept. 12, 2022, 1:31 p.m. ambashth

  • cannot Install Ipython3.How to add Ipython3?

    01-02M 0-10S

    Sept. 11, 2022, 4:33 p.m.

  • HOW TO INSTALL IPYTHON

    Mine is Python 3.9.7 version please tell me how can i get IPYTHON I tried what all u said I am not getting please guide me step to step what to do

    00-01M 0-10S

    Sept. 18, 2022, 1:21 a.m.

  • My script executes perfectly but when i run the .exe i get traceback

    My Python script executes perfectly in a virtual environment which has python 3.9.2 but when i create an exe using pyinstaller the exe doesn.t work, i get tracebacks of certain modules missing but when i add the missing modules with the help of spec files it then gives a traceback of some other modules missing on and on with the Python shutil.after getting this traceback i tried to specify the modin engine in the script but then got this tracebackAfter this when i try to add the missing directory to the exe using spec file it further then gives a traceback of some other module missingI guess the main issue here is pyinstaller not properly coping the dependent libraries to the exe.... can anyone help with this issue and how to create the pyinstaller with spec file which takes care of all the dependent libraries.

    09-10M 0-10S

    Sept. 11, 2022, 4:46 p.m. cloudytechi147

  • Ipython not installing

    In my computer python3 had installed but ipython3 was not installing.

    01-02M 10-20S

    Sept. 11, 2022, 4:47 p.m.

  • pc set up

    how can i set python set up on my pc to learn python ?? please help me

    04-05M 0-10S

    Sept. 17, 2022, 2:20 p.m. Saahi776

  • How to download ipython interpreter

    I have downloaded python-3.8.5 so how to install ipython. I am having trouble while doing this can you please help.

    00-01M 0-10S

    Aug. 30, 2022, 9:56 p.m.

  • I need output for the following basic python program

    Source Code Using a temporary variable in Python# Python program to swap two variablesx = 5y = 10# To take inputs from the user#x = input['Enter value of x: ']#y = input['Enter value of y: ']# create a temporary variable and swap the valuestemp = xx = yy = tempprint['The value of x after swapping: {}'.format[x]]print['The value of y after swapping: {}'.format[y]] Reference : //nareshit.com/python-online-training/

    01-02M 0-10S

    Sept. 15, 2022, 9:53 p.m. Narendra8989

  • Use of python in android

    Shall I use python in android easily.   And for use of this which application I have to install.    Please guide me regarding this.

    07-08M 0-10S

    Sept. 17, 2022, 2:18 p.m. Ojha436

  • Comparative

    How Python is different as compared to MATLAB?

    00-01M 0-10S

    Sept. 17, 2022, 2:18 p.m. HITESH_NINAMA

  • problem in ipython installation

    after successful installation of ipython,the error it shows isipython' is not recognized as an internal or external command,operable program or batch file.

    00-01M 0-10S

    Sept. 10, 2022, 9:46 a.m.

  • Mr.

    Sir/Madam, I cannot install ipython in my windows version 8 in my laptop .can you please share the easy way to install by giving the link /path. I request you to give link to install Matplotlib . 

    01-02M 30-40S

    Sept. 17, 2022, 2:18 p.m.

  • regarding crash problem during Python installation on OS windows 10

    Dear Sir/MamI am unable to install python as per instructions attached in pdf. Kindly resolve.Following crash report I received.---------------------------------------------------------------------------TypeError                              Python 2.7.5: C:\Python27\python.exe                                                   Mon Apr 20 22:53:53 2020A problem occured executing Python code.  Here is the sequence of functioncalls leading up to the error, with the most recent [innermost] call last.C:\Python27\scripts\ipython in []     13     14 [or simply IPython.Shell.IPShell[].mainloop[1] ]     15     16 and IPython will be your working environment when you start python. The final     17 sys.exit[] call will make python exit transparently when IPython finishes, so     18 you don't have an extra prompt to get out of.     19     20 This is probably useful to developers who manage multiple Python versions and     21 don't want to have correspondingly multiple IPython versions. Note that in     22 this mode, there is no way to pass IPython any command-line options, as those     23 are trapped first by Python itself.     24 """     25     26 import IPython.Shell     27---> 28 IPython.Shell.start[].mainloop[]        global IPython.Shell.start.mainloop = undefined     29     30     31     32     33     34     35     36     37     38     39     40     41     42     43C:\Python27\lib\site-packages\IPython\Shell.pyc in start[user_ns=None]   1226             th_mode = special_opts.pop[]   1227         except KeyError:   1228             th_mode = 'tkthread'   1229         return th_shell[th_mode]   1230   1231   1232 # This is the one which should be called by external code.   1233 def start[user_ns = None]:   1234     """Return a running shell instance, dealing with threading options.   1235   1236     This is a factory function which will instantiate the proper IPython shell   1237     based on the user's threading choice.  Such a selector is needed because   1238     different GUI toolkits require different thread handling details."""   1239   1240     shell = _select_shell[sys.argv]-> 1241     return shell[user_ns = user_ns]   1242   1243 # Some aliases for backwards compatibility   1244 IPythonShell = IPShell   1245 IPythonShellEmbed = IPShellEmbed   1246 #************************ End of file ***************************   1247   1248   1249   1250   1251   1252   1253   1254   1255   1256C:\Python27\lib\site-packages\IPython\Shell.pyc in __init__[self=, argv=None, user_ns=None, user_global_ns=None, debug=1, shell_class=]     58 # Default timeout for waiting for multithreaded shells [in seconds]     59 GUI_TIMEOUT = 10     60     61 #-----------------------------------------------------------------------------     62 # This class is trivial now, but I want to have it in to publish a clean     63 # interface. Later when the internals are reorganized, code that uses this     64 # shouldn't have to change.     65     66 class IPShell:     67     """Create an IPython instance."""     68     69     def __init__[self,argv=None,user_ns=None,user_global_ns=None,     70                  debug=1,shell_class=InteractiveShell]:     71         self.IP = make_IPython[argv,user_ns=user_ns,     72                                user_global_ns=user_global_ns,---> 73                                debug=debug,shell_class=shell_class]        global For = undefined        global more = undefined        global details = undefined        global see = undefined        global the = undefined        global __call__ = undefined        global method = undefined        global below. = undefined     74     75     def mainloop[self,sys_exit=0,banner=None]:     76         self.IP.mainloop[banner]     77         if sys_exit:     78             sys.exit[]     79     80 #-----------------------------------------------------------------------------     81 def kill_embedded[self,parameter_s='']:     82     """%kill_embedded : deactivate for good the current embedded IPython.     83     84     This function [after asking for confirmation] sets an internal flag so that     85     an embedded IPython will never activate again.  This is useful to     86     permanently disable a shell that is being called inside a loop: once you've     87     figured out what you needed from it, you may then kill it and the program     88     will then continue to run without the interactive shell interfering again.C:\Python27\lib\site-packages\IPython\ipmaker.pyc in make_IPython[argv=[r'C:\Python27\scripts\ipython'], user_ns=None, user_global_ns=None, debug=1, rc_override=None, shell_class=, embedded=False, **kw={}]    506     # tweaks. Basically options which affect other options. I guess this    507     # should just be written so that options are fully orthogonal and we    508     # wouldn't worry about this stuff!    509    510     if IP_rc.classic:    511         IP_rc.quick = 1    512         IP_rc.cache_size = 0    513         IP_rc.pprint = 0    514         IP_rc.prompt_in1 = '>>> '    515         IP_rc.prompt_in2 = '... '    516         IP_rc.prompt_out = ''    517         IP_rc.separate_in = IP_rc.separate_out = IP_rc.separate_out2 = '0'    518         IP_rc.colors = 'NoColor'    519         IP_rc.xmode = 'Plain'    520--> 521     IP.pre_config_initialization[]    522     # configure readline    523    524     # update exception handlers with rc file status    525     otrap.trap_out[]  # I don't want these messages ever.    526     IP.magic_xmode[IP_rc.xmode]    527     otrap.release_out[]    528    529     # activate logging if requested and not reloading a log    530     if IP_rc.logplay:    531         IP.magic_logstart[IP_rc.logplay + ' append']    532     elif  IP_rc.logfile:    533         IP.magic_logstart[IP_rc.logfile]    534     elif IP_rc.log:    535         IP.magic_logstart[]    536C:\Python27\lib\site-packages\IPython\iplib.pyc in pre_config_initialization[self=]    820                           self.user_ns,  # globals    821                           # Skip our own frame in searching for locals:    822                           sys._getframe[depth+1].f_locals # locals    823                           ]]    824    825     def pre_config_initialization[self]:    826         """Pre-configuration init method    827    828         This is called before the configuration files are processed to    829         prepare the services the config files might need.    830    831         self.rc already has reasonable default values at this point.    832         """    833         rc = self.rc    834         try:--> 835             self.db = pickleshare.PickleShareDB[rc.ipythondir + "/db"]        global prompt = undefined        global a = undefined        global string =         global to = undefined        global be = undefined        global printed = undefined        global the = undefined        global user. = undefined    836         except exceptions.UnicodeDecodeError:    837             print "Your ipythondir can't be decoded to unicode!"    838             print "Please set HOME environment variable to something that"    839             print r"only has ASCII characters, e.g. c:\home"    840             print "Now it is",rc.ipythondir    841             sys.exit[]    842         self.shadowhist = IPython.history.ShadowHist[self.db]    843    844     def post_config_initialization[self]:    845         """Post configuration init method    846    847         This is called after the configuration files have been processed to    848         'finalize' the initialization."""    849    850         rc = self.rcC:\Python27\lib\site-packages\IPython\Extensions\pickleshare.pyc in __init__[self=PickleShareDB['C:\Users\Gagan\_ipython\db'], root=u'C:\\Users\\Gagan\\_ipython/db']     38 import cPickle as pickle     39 import UserDict     40 import warnings     41 import glob     42     43 def gethashfile[key]:     44     return ["%02x" % abs[hash[key] % 256]][-2:]     45     46 _sentinel = object[]     47     48 class PickleShareDB[UserDict.DictMixin]:     49     """ The main 'connection' object for PickleShare database """     50     def __init__[self,root]:     51         """ Return a db object that will manage the specied directory"""     52         self.root = Path[root].expanduser[].abspath[]---> 53         if not self.root.isdir[]:     54             self.root.makedirs[]     55         # cache has { 'key' : [obj, orig_mod_time] }     56         self.cache = {}     57     58     59     def __getitem__[self,key]:     60         """ db['key'] reading """     61         fil = self.root / key     62         try:     63             mtime = [fil.stat[][stat.ST_MTIME]]     64         except OSError:     65             raise KeyError[key]     66     67         if fil in self.cache and mtime == self.cache[fil][1]:     68             return self.cache[fil][0]TypeError: _isdir[] takes exactly 1 argument [0 given]**********************************************************************Oops, IPython crashed. We do our best to make it stable, but...A crash report was automatically generated with the following information:  - A verbatim copy of the crash traceback.  - A copy of your input history during this session.  - Data on your current IPython configuration.It was left in the file named:        'C:\Users\Gagan\_ipython\IPython_crash_report.txt'If you can email this file to the developers, the information in it will helpthem in understanding and correcting the problem.You can mail it to: Fernando Perez at the subject 'IPython Crash Report'.If you want to do it now, the following command will work [under Unix]:mail -s 'IPython Crash Report' < C:\Users\Gagan\_ipython\IPython_crash_report.txtTo ensure accurate tracking of this issue, please file a report about it at://bugs.launchpad.net/ipython/+filebugPress enter to exit:ReplyForwardReplyForward

    00-01M 0-10S

    Sept. 8, 2022, 10:06 p.m.

  • Round[]

    Why round[2.48] output is 2 and round[2.48,1] output is 2.5 ..it can also be 2 or 2.48 can be 2.5

    06-07M 40-50S

    Sept. 8, 2022, 2:49 a.m. rakesh2808

  • spoken tutorials on Python 3.6.5

    Are there any spoken tutorials on Python 3.6.5 ?

    00-01M 0-10S

    Sept. 15, 2022, 10:39 a.m. plshaji

  • Courses related

    What is the difference between python [37] and python3.4.3[39] courses?Which one is to be preferred.

    00-01M 0-10S

    Sept. 15, 2022, 12:03 p.m. RVRJC

  • required version of ipython for python 3.7

    As per CBSE, Python3.7 is the required version. But in the installation sheet, there is no reference for it.Please help me to get the correct version of ipython, for Python3.7. and subsequent packages given in installation sheet.

    00-01M 0-10S

    Sept. 4, 2022, 8:10 p.m. ary123in92

  • matplotlib cannot be installed

    I tried to install matplotlib and later import it in my laptop, its not working.i tried it with different version of python too.can u help?

    00-01M 0-10S

    Sept. 10, 2022, 4:34 a.m. Tinam

  • School Teachers

    Is there any possibility to arrange workshop separately for school teachers relate to the latest python syllabus of 11 and 12 

    00-01M 0-10S

    Sept. 7, 2022, 11:47 p.m.

  • ipython

    Is ipython advanced version of python? Also is linspace command usage same as MATLAB?

    05-06M 20-30S

    Sept. 14, 2022, 12:53 p.m. GarimaG

  • how to start ipython interpreter

    kindly guide me with complete procedure of starting ipython. what is meant by terminal ? as in the tutorial it has been said press ctrl +alt+ t+ k on terminal here at this point clear what do you mean by terminal. 

    01-02M 0-10S

    Sept. 18, 2022, 6:30 p.m. jjohari

  • Plot

    Can we plot directly without using sequence variable?

    00-01M 0-10S

    Sept. 3, 2022, 10:42 p.m. Devipriya_C

  • IPython installation

    I have download and install all the files recommended in installation sheet, now how to open the terminal , I tried all the methods but it does't work

    01-02M 10-20S

    Sept. 13, 2022, 8:32 a.m. SENRAJESH

  • ipython

     Difference between the working of normal interpreter and ipython interpreter. Is there any diffidence?

    10-11M 40-50S

    Sept. 16, 2022, 5:59 p.m. Balasamy

  • linux or windows

    Dear sir/ Madam, I'm The beginner of Python and i want to know which OS is best for Phython

    01-02M 0-10S

    Sept. 13, 2022, 8:15 p.m. shankar1611

  • Commands not executing

    I have python 3.2.3 installed but the commands like $ipython and tabs are not working ..how to do

    01-02M 0-10S

    Sept. 17, 2022, 2:18 p.m. SENRAJESH

  • Usefulness of content

    Dear sir,This is Suresh PatelPls tell us that how much part of this tutorial is useful for CBSE IP portion for 11 & 12 STD.

    01-02M 10-20S

    Sept. 16, 2022, 8:48 p.m. sureshpatel2008

  • COMMANDS a,r,ab

    sir i have tried the commands as shown in video but facing problem for \r\ncommands a,ab,r.can you just provide the reason why it not working.

    03-04M 30-40S

    Sept. 14, 2022, 3:14 p.m.

  • Difference between Python & Ipython

    Please explain the difference between Python & Ipython

    00-01M 0-10S

    Sept. 3, 2022, 10:53 p.m. sathyavani

  • Linspace

    Kindly explain clearly about Linspace?

    00-01M 0-10S

    Sept. 14, 2022, 8:11 p.m. vaduganathan

  • import matplotlib

    For this command I am getting the following error:"Import Error: DLL load failed: The specified module could not be found."How to resolve this?

    00-01M 0-10S

    Sept. 16, 2022, 8:48 p.m. pragatisawant

  • Python doubt

    I have a doubt that what is the difference between iPython and normal Python

    00-01M 10-20S

    Sept. 8, 2022, 12:27 a.m. SamAddy

  • Installation issue

    I have installed python as per instructions without error. I checked in programs, but there is only folder name Python27, and there is no iPython folder available. When I try to run ipython from search it displays message as ipython is crashed. and press any key to exit.Kibdly help me out from this as there is workshop today itself.

    00-01M 0-10S

    Sept. 10, 2022, 9:50 a.m. Tara

  • Ipython command not running

    we are trying with windows version ipython not running

    04-05M 10-20S

    Sept. 14, 2022, 6:10 p.m. baishakhibose

  • Installation

     I am very interested to learn python, i registered in spoken tutorial. I\r\n followed the steps of installing python which provided in the \r\ninstallation sheet. But my computer OS is windows10 64 bit, bt the link \r\nto download the ipython IDE is 32 bit. How can i get 64 bit ipython? \r\nwould you please help me??

    00-01M 0-10S

    Sept. 11, 2022, 4:04 a.m. Venkatesh.p

  • Problems in Python Tutorial

    Dear mam, Greetings.... while going through tutorial of Python ... Students are facing problems as follows:Mismatch in commands outputs of tutorial of level1 itself.difference in the version of tutorial software and software provided in CD.For example ... Interface prompt for very first command is differenthelp commands are not runninglinspace command is not runningtabs is not functioningctrl+D command for exit is not working...I am attaching the word file with print screen of tutorial and working prompts...Pls kindly advise us the solution because studenst are not able to correlate the tutorial. //www.scribd.com/doc/215649725/Problems RegardsDr Shikha[Posted on behalf of Dr. Shikha Singh]

    Sept. 17, 2022, 10:05 p.m. hardythe1

  • Is Spoken Tutorial free?

    The Spoken Tutorial Project is about teaching and learning a particular FOSS [Free and Open Source Software] like Linux, Scilab, LaTeX, PHP & MySQL, Java, C/C++, LibreOffice etc.

    How can I download spoken video tutorial?

    Click on //www.spoken-tutorial.org/create_cd_content Click on FOSS category drop-down menu. Please select the same software course to download, as the one you have selected for conducting the Training. Tutorials are categorised on the basis of complexity of topics covered therein.

    How can I get my spoken tutorial certificate?

    Login to //spoken-tutorial.org/ with your Organiser Username and Password. Click on 'Software Training' link present in the header part of the website. Scroll down as per the Semester and Trainings [e.g. July - December 2018] • Under Action Click on Participant List. Click on “Download Certificate”.

    Chủ Đề