P_11 Data Types in Python | Python Tutorials for Beginners

preview_player
Показать описание


********************************************
Connect & Contact Me:

********************************************

See Complete Playlists:

#pythonforbeginners #programming #datatypes #jennyslectures
Рекомендации по теме
Комментарии
Автор

Print(0o123) = 83
Print(0x123) = 291

Ok so i found a method to do these questions.

In 0o123, it indicates octal ok?
So, the base is 8.
Now taking most right digit 3 & multiplying it with 8^0 i.e 3 × 8^0 = 3

then taking two & multiplying it with 8^1 i.e 2 × 8^1 = 16

last, taking 1 & multiplying it with 8^2 i.e 1 × 8^2 = 64

Add the answers you got in every step. 3 + 16 + 64 = 83

*Same Method For 2nd Question*
note to remember *start from right* & (0x123) indicates hexa so the base is 16.

spinverseTutorials
Автор

Thanku @JENNY. Am a cs faculty . it helped me alot in clearing my doubt and made me to teach with more confidence.. one of the best teachers i have seen.

naveenkumar-ipsm
Автор

name="jenny khatri"
print(name[5])
print(len(name))
output:-
it will print space
12 #because it count space also

print(0o123)
print(0x123)
output:-
83
291

mam plz🙏🙏 ans me that i am right or not....

nishagupta
Автор

Maam you just looks too beautiful I started watching the video due to the thumbnail and now I have mastered all the

sudhanshupoddar
Автор

I love your teaching mam
I searched so many video about python
But finally reached your video mam
Thanks for your hard dedication to teach
Thank you mam

julakantivikash
Автор

This is great. I enjoyed your C playlist, you explain so well. I will enjoy this too I believe.

makonduchiyesu
Автор

Hi Mam I am waiting for your next video on python...as this python course seems really helpful to me.
Thank you so much mam for your efforts 🙂

daramsankarteja
Автор

Mam I am waiting for your new video on python...as this python course seems really helpful to me.
Thank you so much mam for your efforts 🙂

harshita
Автор

13:36 By default, they will convert and print as decimal form ah madam...

marimuthu_a
Автор

Seriously, a good lecture... lot's of effort...🙏🙏🙏

Chefatmyownkitchenette
Автор

Many thanks for you efforts in teaching us coding. ❤❤❤❤

haseenamulla
Автор

mam you printed the string jenny lectures 5 times but u also said we cannot concatinate a string and an integer how does it possible please explain mam.

cmrtvsp
Автор

Print(0o123) : the octa decimal value is 83 ; print(0x123): the hexa decimal value is 291

karthikuppaluru
Автор

ma'am you walyas teach good not good excellent just ma'am i have no words for you .
just keep uploading videos we will watch and increase your views. and increase our knowledge.
😅🥰😅

zgfrqlt
Автор

Ur Explanation superb
One request mam
Please upload the Java Explanation videos
Topics
UNIT I Introduction
Introduction to Object Oriented Programming, The History and Evolution of Java, Introduction to Classes,
Objects, Methods, Constructors, this keyword, Garbage Collection, Data Types, Variables, Type
Conversion and Casting, Arrays, Operators, Control Statements, Method Overloading, Constructor
Overloading, Parameter Passing, Recursion, String Class and String handling methods
UNIT II Inheritance, Packages, Interfaces
Inheritance: Basics, Using Super, Creating Multilevel hierarchy, Method overriding, Dynamic Method
Dispatch, Using Abstract classes, Using final with inheritance, Object class,
Packages: Basics, Finding packages and CLASSPATH, Access Protection, Importing packages.
Interfaces: Definition, Implementing Interfaces, Extending Interfaces, Nested Interfaces, Applying
Interfaces, Variables in Interfaces.
UNIT III Exception handling, Stream based I/O
Exception handling - Fundamentals, Exception types, Uncaught exceptions, using try and catch, multiple
catch clauses, nested try statements, throw, throws and finally, built-in exceptions, creating own exception
subclasses.
Stream based I/O (java.io) – The Stream Classes-Byte streams and Character streams, Reading console
Input and Writing Console Output, File class, Reading and Writing Files, Random access file operations,
The Console class, Serialization, Enumerations, Autoboxing, Generics.
UNIT IV Multithreading, The Collections Framework
Multithreading: The Java thread model, creating threads, Thread priorities, Synchronizing threads,
Interthread communication.
The Collections Framework (java.util): Collections overview, Collection Interfaces, The Collectionclasses￾Array List, Linked List, Hash Set, Tree Set, Priority Queue, Array Deque. Hashtable, Properties, Stack,
Vector, String Tokenizer, Bit Set, Date, Calendar, Random, Formatter, Scanner.
UNIT V Applet, GUI Programming with Swings, Accessing Databases with JDBC
Applet: Basics, Architecture, Applet Skeleton, requesting repainting, using the status window, passing
parameters to applets
GUI Programming with Swings – The origin and design philosophy of swing, components and containers,
layout managers, event handling, using a push button, jtextfield, jlabel and image icon, the swing buttons,
jtext field, jscrollpane, jlist, jcombobox, trees, jtable, An overview of jmenubar, jmenu and jmenuitem, creating a main menu, show message dialog, show confirmdialog, show input dialog, show option dialog,
jdialog, create a modeless dialog.
Accessing Databases with JDBC:
Types of Drivers, JDBC Architecture, JDBC classes and Interfaces, Basic steps in developing JDBC
applications, Creating a new database and table with JDBC

sindhujasekhar
Автор

05:50 0x prefix means it is an octal number ?

ansonsaji
Автор

I love your teaching method It is excellent and please continue the course

manoharm
Автор

Ma'am can we enter after compiled in index like name[ ], in index can we write after completing of compiling

acpbchannel
Автор

Hi Ma'm thank you for your video, seems like i am really sitting in a classroom haha. And you videos are so easy to understand. Can you maybe also do SQL Database videos? Beginner to advance?

nariroeplal
Автор

print(0x123) returns 291 and 0o123 returns 83

micmike