Which of the following expressions is an example of type conversion?
Anonymous Quiz
73%
4.0 + float(3)
6%
5.3 + 6.3
17%
5.0 + 3
3%
3 + 7
Which of the following expressions results in an error?
Anonymous Quiz
24%
float(โ10โ)
11%
int(โ10โ)
23%
float(โ10.8โ)
42%
int(โ10.8โ)
What will be the value of the following Python expression?
4+2**5//10
4+2**5//10
Anonymous Quiz
16%
3
59%
7
16%
77
9%
0
โ
Install Python IDE [Pycharm IDE]
PyCharm is a cross-platform editor developed by JetBrains. Pycharm provides all the tools you need for productive Python development.
Below are the detailed steps for installing Python and PyCharm
How to Install Python IDE
Below is a step by step process on how to download and install Python on Windows:
Step 1) To download and install Python, visit the official website of Python https://www.python.org/downloads/ and choose your version. We have chosen Python version 3.6.3
Step 2) Once the download is completed, run the .exe file to install Python. Now click on Install Now.
Step 3) You can see Python installing at this point.
Step 4) When it finishes, you can see a screen that says the Setup was successful. Now click on โCloseโ.
๐ Read Online
#Python #IDE
โโโโโโโโโโโโโ
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
PyCharm is a cross-platform editor developed by JetBrains. Pycharm provides all the tools you need for productive Python development.
Below are the detailed steps for installing Python and PyCharm
How to Install Python IDE
Below is a step by step process on how to download and install Python on Windows:
Step 1) To download and install Python, visit the official website of Python https://www.python.org/downloads/ and choose your version. We have chosen Python version 3.6.3
Step 2) Once the download is completed, run the .exe file to install Python. Now click on Install Now.
Step 3) You can see Python installing at this point.
Step 4) When it finishes, you can see a screen that says the Setup was successful. Now click on โCloseโ.
๐ Read Online
#Python #IDE
โโโโโโโโโโโโโ
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
Python.org
Download Python
The official home of the Python Programming Language
What will be the output of the following Python code snippet if x=1?
x<<2
x<<2
Anonymous Quiz
12%
8
43%
1
22%
2
24%
4
What will be the output of the following Python expression?
bin(29)
bin(29)
Anonymous Quiz
18%
โ0b10111โ
57%
โ0b11101โ
18%
โ0b11111โ
8%
โ0b11011โ
๐ฅฐ4๐ฅ1
COMMON TERMINOLOGIES IN PYTHON - PART 1
Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?
In this series, we would be looking at the common Terminologies in python.
It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:
IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.
Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately
System Python - This is the version of python that comes with your operating system
Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions
REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)
Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.
Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function
Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.
Note: A return value can be any of these variable types: handle, integer, object, or string
Script - This is a file where you store your python code in a text file and execute all of the code with a single command
Script files - this is a file containing a group of python scripts
Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?
In this series, we would be looking at the common Terminologies in python.
It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:
IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.
Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately
System Python - This is the version of python that comes with your operating system
Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions
REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)
Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.
Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function
Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.
Note: A return value can be any of these variable types: handle, integer, object, or string
Script - This is a file where you store your python code in a text file and execute all of the code with a single command
Script files - this is a file containing a group of python scripts
๐15๐ฅ3๐1
Python Learning pinned ยซCOMMON TERMINOLOGIES IN PYTHON - PART 1 Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them? In this series, we would be looking at the common Terminologiesโฆยป
What will be the value of x in the following Python expression, if the result of that expression is 2?
x>>2
x>>2
Anonymous Quiz
37%
8
34%
4
14%
2
15%
1
๐7
What will be the output of the following Python expression?
int(1011)?
int(1011)?
Anonymous Quiz
62%
1011
22%
11
13%
13
3%
1101
๐5
To find the decimal value of 1111, that is 15, we can use the function:
Anonymous Quiz
34%
int(1111,10)
19%
int(โ1111โ,10)
32%
int(1111,2)
15%
int(โ1111โ,2)
12 hours of Python course on YouTube
โญ๏ธTime Stampsโญ๏ธ
#1 (00:00:00)โ Python tutorial for beginners ๐
#2 (00:05:57โ) variables โ
#3 (00;17;38โ) multiple assignment ๐
#4 (00:20:27โ) string methods ใฐ๏ธ
#5 (00:25:13โ) type cast ๐ฑ
#6 (00:30:14โ) user input โจ๏ธ
#7 (00:36:50โ) math functions ๐งฎ
#8 (00:40:58โ) string slicing โ๏ธ
#9 (00:51:52โ) if statements ๐ค
#10 (00:58:19)โ logical operators ๐ฃ
#11 (01:04:03โ) while loops ๐
#12 (01:07:31โ) for loops โฐ
#13 (01:13:04โ) nested loops โฟ
#14 (01:17:08) break continue pass โ๏ธ
#15 (01:21:06โ) lists ๐งพ
#16 (01:26:58โ) 2D lists ๐
#17 (01:30:47โ) tuples ๐
#18 (01:33:47โ) sets ๐ด
#19 (01:40:03โ) dictionaries ๐
#20 (01:47:20โ) indexing ๐
#21 (01:53:23โ) functions ๐
#22 (02:02:03โ) return statement ๐
#23 (02:04:51) keyword arguments ๐
#24 (02:07:09โ) nested function calls ๐
#25 (02:09:40โ) variable scope ๐ฌ
#26 (02:13:23โ) *args ๐ฆ
#27 (02:16:58โ) **kwargs ๐
#28 (02:21:17โ) string format ๐ฌ
#29 (02:33:22โ) random numbers ๐ฒ
#30 (02:36:43โ) exception handling โ ๏ธ
#31 (02:43:40) file detection ๐
#32 (02:47:28โ) read a file ๐
#33 (02:51:00โ) write a file ๐
#34 (02:53:45โ) copy a file ๐จ
#35 (02:57:05โ) move a file ๐
#36 (03:01:20โ) delete a file ๐
#37 (03:06:15โ) modules ๐
#38 (03:10:26) rock, paper, scissors game ๐ฟ
#39 (03:18:32โ) quiz game ๐ฏ
#40 (03:35:45โ) Object Oriented Programming (OOP) ๐
#41 (03:45:06โ) class variables ๐
#42 (03:48:54โ) inheritance ๐ช
#43 (03:55:30โ) multilevel inheritance ๐ด
#44 (03:58:32) multiple inheritance ๐จโ๐ฉโ๐งโ๐ฆ
#45 (04:01:49) method overriding ๐
#46 (04:04:14โ) method chaining โ
#47 (04:08:08) super function ๐ฆธ
#48 (04:12:09โ) abstract classes ๐ป
#49 (04:19:12) objects as arguments ๐
#50 (04:23:20โ) duck typing ๐ฆ
#51 (04:27:38) walrus operator ๐ฆฆ
#52 (04:31:45โ) functions to variables ๐
#53 (04:35:21โ) higher order functions ๐
#54 (04:41:06โ) lambda ฮป
#55 (04:45:44โ) sort ๐
#56 (04:53:22โ) map ๐บ
#57 (04:57:17โ) filter ๐บ
#58 (05:00:10โ) reduce โป๏ธ
#59 (05:04:54โ) list comprehensions ๐ฐ
#60 (05:10:54) dictionary comprehensions ๐ฎ
#61 (05:18:59โ) zip function ๐ค
#62 (05:23:41โ) if name == 'main' โ
#63 (05:29:21โ) time module โ๏ธ
#64 (05:39:58โ) threading ๐งต
#65 (05:53:31โ) daemon threads ๐
#66 (05:58:19โ) multiprocessing โก๏ธ
#67 (06:07:15โ) GUI windows ๐ผ
#68 (06:14:38โ) labels ๐ท
#69 (06:24:24โ) buttons ๐
#70 (06:30:44โ) entrybox โจ๏ธ
#71 (06:40:15โ) checkbox โ๏ธ
#72 (06:49:08โ) radio buttons ๐
#73 (07:00:47โ) scale ๐ก
#74 (07:10:24โ) listbox ๐
#75 (07:24:41โ) messagebox ๐ญ
#76 (07:37:17โ) colorchooser ๐จ
#77 (07:43:10โ) text area ๐
#78 (07:48:38โ) open a file (file dialog) ๐
#79 (07:55:33โ) save a file (file dialog) ๐พ
#80 (08:05:17โ) menubar ๐งพ
#81 (08:15:23โ) frames โฐ๏ธ
#82 (08:21:30โ) new windows ๐
#83 (08:25:32โ) window tabs ๐
#84 (08:30:52โ) grid ๐ข
#85 (08:39:52โ) progress bar ๐
#86 (08:49:48โ) canvas ๐
#87 (09:01:18โ) keyboard events โจ๏ธ
#88 (09:05:54โ) mouse events ๐ฑ
#89 (09:11:00โ) drag & drop ๐
#90 (09:18:18โ) move images w/ keys ๐
#91 (09:29:13โ) animations ๐ธ
#92 (09:41:31โ) multiple animations ๐
#93 (09:53:04โ) clock program ๐
#94 (10:01:03โ) send an email ๐ง
#95 (10:07:37โ) run with command prompt ๐จโ๐ป
#96 (10:09:53) pip ๐
#97 (10:13:30) py to exe ๐
#98 (10:17:13โ) calculator program ๐ฉ
#99 (10:31:38โ) text editor program โ๏ธ
100 (11:05:51) tic tac toe game โญ๏ธ
101 (11:26:25)โ snake game ๐
๐ Course link
โญ๏ธTime Stampsโญ๏ธ
#1 (00:00:00)โ Python tutorial for beginners ๐
#2 (00:05:57โ) variables โ
#3 (00;17;38โ) multiple assignment ๐
#4 (00:20:27โ) string methods ใฐ๏ธ
#5 (00:25:13โ) type cast ๐ฑ
#6 (00:30:14โ) user input โจ๏ธ
#7 (00:36:50โ) math functions ๐งฎ
#8 (00:40:58โ) string slicing โ๏ธ
#9 (00:51:52โ) if statements ๐ค
#10 (00:58:19)โ logical operators ๐ฃ
#11 (01:04:03โ) while loops ๐
#12 (01:07:31โ) for loops โฐ
#13 (01:13:04โ) nested loops โฟ
#14 (01:17:08) break continue pass โ๏ธ
#15 (01:21:06โ) lists ๐งพ
#16 (01:26:58โ) 2D lists ๐
#17 (01:30:47โ) tuples ๐
#18 (01:33:47โ) sets ๐ด
#19 (01:40:03โ) dictionaries ๐
#20 (01:47:20โ) indexing ๐
#21 (01:53:23โ) functions ๐
#22 (02:02:03โ) return statement ๐
#23 (02:04:51) keyword arguments ๐
#24 (02:07:09โ) nested function calls ๐
#25 (02:09:40โ) variable scope ๐ฌ
#26 (02:13:23โ) *args ๐ฆ
#27 (02:16:58โ) **kwargs ๐
#28 (02:21:17โ) string format ๐ฌ
#29 (02:33:22โ) random numbers ๐ฒ
#30 (02:36:43โ) exception handling โ ๏ธ
#31 (02:43:40) file detection ๐
#32 (02:47:28โ) read a file ๐
#33 (02:51:00โ) write a file ๐
#34 (02:53:45โ) copy a file ๐จ
#35 (02:57:05โ) move a file ๐
#36 (03:01:20โ) delete a file ๐
#37 (03:06:15โ) modules ๐
#38 (03:10:26) rock, paper, scissors game ๐ฟ
#39 (03:18:32โ) quiz game ๐ฏ
#40 (03:35:45โ) Object Oriented Programming (OOP) ๐
#41 (03:45:06โ) class variables ๐
#42 (03:48:54โ) inheritance ๐ช
#43 (03:55:30โ) multilevel inheritance ๐ด
#44 (03:58:32) multiple inheritance ๐จโ๐ฉโ๐งโ๐ฆ
#45 (04:01:49) method overriding ๐
#46 (04:04:14โ) method chaining โ
#47 (04:08:08) super function ๐ฆธ
#48 (04:12:09โ) abstract classes ๐ป
#49 (04:19:12) objects as arguments ๐
#50 (04:23:20โ) duck typing ๐ฆ
#51 (04:27:38) walrus operator ๐ฆฆ
#52 (04:31:45โ) functions to variables ๐
#53 (04:35:21โ) higher order functions ๐
#54 (04:41:06โ) lambda ฮป
#55 (04:45:44โ) sort ๐
#56 (04:53:22โ) map ๐บ
#57 (04:57:17โ) filter ๐บ
#58 (05:00:10โ) reduce โป๏ธ
#59 (05:04:54โ) list comprehensions ๐ฐ
#60 (05:10:54) dictionary comprehensions ๐ฎ
#61 (05:18:59โ) zip function ๐ค
#62 (05:23:41โ) if name == 'main' โ
#63 (05:29:21โ) time module โ๏ธ
#64 (05:39:58โ) threading ๐งต
#65 (05:53:31โ) daemon threads ๐
#66 (05:58:19โ) multiprocessing โก๏ธ
#67 (06:07:15โ) GUI windows ๐ผ
#68 (06:14:38โ) labels ๐ท
#69 (06:24:24โ) buttons ๐
#70 (06:30:44โ) entrybox โจ๏ธ
#71 (06:40:15โ) checkbox โ๏ธ
#72 (06:49:08โ) radio buttons ๐
#73 (07:00:47โ) scale ๐ก
#74 (07:10:24โ) listbox ๐
#75 (07:24:41โ) messagebox ๐ญ
#76 (07:37:17โ) colorchooser ๐จ
#77 (07:43:10โ) text area ๐
#78 (07:48:38โ) open a file (file dialog) ๐
#79 (07:55:33โ) save a file (file dialog) ๐พ
#80 (08:05:17โ) menubar ๐งพ
#81 (08:15:23โ) frames โฐ๏ธ
#82 (08:21:30โ) new windows ๐
#83 (08:25:32โ) window tabs ๐
#84 (08:30:52โ) grid ๐ข
#85 (08:39:52โ) progress bar ๐
#86 (08:49:48โ) canvas ๐
#87 (09:01:18โ) keyboard events โจ๏ธ
#88 (09:05:54โ) mouse events ๐ฑ
#89 (09:11:00โ) drag & drop ๐
#90 (09:18:18โ) move images w/ keys ๐
#91 (09:29:13โ) animations ๐ธ
#92 (09:41:31โ) multiple animations ๐
#93 (09:53:04โ) clock program ๐
#94 (10:01:03โ) send an email ๐ง
#95 (10:07:37โ) run with command prompt ๐จโ๐ป
#96 (10:09:53) pip ๐
#97 (10:13:30) py to exe ๐
#98 (10:17:13โ) calculator program ๐ฉ
#99 (10:31:38โ) text editor program โ๏ธ
100 (11:05:51) tic tac toe game โญ๏ธ
101 (11:26:25)โ snake game ๐
๐ Course link
YouTube
Python Full Course for free ๐
#python #tutorial #beginners
Python tutorial for beginners full course
Python 12 Hour Full Course for free ๐ (2024): https://www.youtube.com/watch?v=ix9cRaBkVe0
Learn Python in 1 HOUR โฑ: https://www.youtube.com/watch?v=8KCuHHeC_M0
My original Python 12โฆ
Python tutorial for beginners full course
Python 12 Hour Full Course for free ๐ (2024): https://www.youtube.com/watch?v=ix9cRaBkVe0
Learn Python in 1 HOUR โฑ: https://www.youtube.com/watch?v=8KCuHHeC_M0
My original Python 12โฆ
๐5โค2๐1
What will be the output of the following Python expression if x=15 and y=12?
x & y
x & y
Anonymous Quiz
16%
b1101
27%
0b1101
35%
12
22%
1101
python-mastery
Advanced Python Mastery (course by dabeaz)
Creator: Dabeaz LLC
Stars โญ๏ธ: 4.4k
Forked By: 482
https://github.com/dabeaz-course/python-mastery
#python #mastery
โโโโโโโโโโ
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
Advanced Python Mastery (course by dabeaz)
Creator: Dabeaz LLC
Stars โญ๏ธ: 4.4k
Forked By: 482
https://github.com/dabeaz-course/python-mastery
#python #mastery
โโโโโโโโโโ
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
GitHub
GitHub - dabeaz-course/python-mastery: Advanced Python Mastery (course by @dabeaz)
Advanced Python Mastery (course by @dabeaz). Contribute to dabeaz-course/python-mastery development by creating an account on GitHub.
๐ฅ2๐ฅฐ2๐1
Which of the following expressions results in an error?
Anonymous Quiz
14%
int(1011)
54%
int(โ1011โ,23)
17%
int(1011,2)
15%
int(โ1011โ)