What will be the output of the following Python expression?
print(4.00/(2.0+2.0))
print(4.00/(2.0+2.0))
Anonymous Quiz
10%
Error
56%
1.0
22%
1.00
11%
1
What will be the value of X in the following Python expression?
X = 2+9*((3*12)-8)/10
X = 2+9*((3*12)-8)/10
Anonymous Quiz
7%
30.0
24%
30.8
22%
28.4
47%
27.2
π₯°2π1
Learn Python: A Free Online Course from Google
The class includes βwritten materials, lecture videos, and lots of code exercises to practice Python coding. These materials are used within Google to introduce Python to people who have just a little programming experience. The first exercises work on basic Python concepts like strings and lists, building up to the later exercises which are full programs dealing with text files, processes, and http connections. The class is geared for people who have a little bit of programming experience in some language, enough to know what a βvariableβ or βif statementβ is. Beyond that, you do not need to be an expert programmer to use this material.
π Free Online Course
π¬ 23 video lesson
β° Duration: More than 24 hours
Teachers: Nick Parlante
Resource: Google
π Course Link
#Python #Google
ββββββββββββββ
πJoin @bigdataspecialist for moreπ
The class includes βwritten materials, lecture videos, and lots of code exercises to practice Python coding. These materials are used within Google to introduce Python to people who have just a little programming experience. The first exercises work on basic Python concepts like strings and lists, building up to the later exercises which are full programs dealing with text files, processes, and http connections. The class is geared for people who have a little bit of programming experience in some language, enough to know what a βvariableβ or βif statementβ is. Beyond that, you do not need to be an expert programmer to use this material.
π Free Online Course
π¬ 23 video lesson
β° Duration: More than 24 hours
Teachers: Nick Parlante
Resource: Google
π Course Link
#Python #Google
ββββββββββββββ
πJoin @bigdataspecialist for moreπ
Google for Developers
Google's Python Class | Python Education | Google for Developers
Assorted educational materials provided by Google.
β€3π3
What will be the output of the following Python expression?
24//6%3, 24//4//2
24//6%3, 24//4//2
Anonymous Quiz
50%
(1,3)
30%
(0,3)
14%
(1,0)
6%
(3,1)
π£ Important: Looking for new team member/s π£
Hello folks,
In recent weeks 2 of our team members has quit due to personal reasons. They are going through a difficult period and I would like to repeat that we are with them and that they can contact me for whatever they need π
Anyways this community is really huge (14 Telegram channels, Instagram page, Discord server, multiple WhatsApp groups...over 50k people) so we would really need some help.
Work description for new team member/s:
* Preparing content for our Telegram channels
* Designing educational posts for Instagram page
* Forwarding posts to discord servers
* Moderating discord server and WhatsApp groups
* Organizing programming quiz competitions
* Promoting our community
New team members will get exclusive access to admins chat, access to all resources we gathered in previous 3 years and paid tools they need for the job (example: Canva pro subscription for IG post design).
If you are interested please send info about yourself (Name, age, your country, education, experience, what programming languages and tools are you using etc) to bigdataspecialistbl@gmail.com or to me directly: username: @mldatascientist. Please explain why do you want to become member of our team and how can you contribute. Try to stand out among the others. Number of potential new team members is not limited.
PS. Please only apply if you find being in admin team of such a community fun and useful. Don't apply for the money. We will definitely share all earnings equally, but those are still pretty small amounts. Thanks.
Hello folks,
In recent weeks 2 of our team members has quit due to personal reasons. They are going through a difficult period and I would like to repeat that we are with them and that they can contact me for whatever they need π
Anyways this community is really huge (14 Telegram channels, Instagram page, Discord server, multiple WhatsApp groups...over 50k people) so we would really need some help.
Work description for new team member/s:
* Preparing content for our Telegram channels
* Designing educational posts for Instagram page
* Forwarding posts to discord servers
* Moderating discord server and WhatsApp groups
* Organizing programming quiz competitions
* Promoting our community
New team members will get exclusive access to admins chat, access to all resources we gathered in previous 3 years and paid tools they need for the job (example: Canva pro subscription for IG post design).
If you are interested please send info about yourself (Name, age, your country, education, experience, what programming languages and tools are you using etc) to bigdataspecialistbl@gmail.com or to me directly: username: @mldatascientist. Please explain why do you want to become member of our team and how can you contribute. Try to stand out among the others. Number of potential new team members is not limited.
PS. Please only apply if you find being in admin team of such a community fun and useful. Don't apply for the money. We will definitely share all earnings equally, but those are still pretty small amounts. Thanks.
π2
Programming, data science, ML - free courses by Big Data Specialist
π£ Important: Looking for new team member/s π£ Hello folks, In recent weeks 2 of our team members has quit due to personal reasons. They are going through a difficult period and I would like to repeat that we are with them and that they can contact me forβ¦
I shared this message 3 days ago in our main channel, @bigdataspecialist.
I have just realized that majority of you are not subscriber of that channel, so I figured that it's not fair if I not share it with you as well.
So here you go, I will be accepting applications in next 24h
I have just realized that majority of you are not subscriber of that channel, so I figured that it's not fair if I not share it with you as well.
So here you go, I will be accepting applications in next 24h
The Algorithms in Python
All algorithms implemented in Python - Implementations are for learning purposes only. They may be less efficient than the implementations in the Python standard library. Use them at your discretion.
Creator: The Algorithms
Stars βοΈ: 160k
Forked By: 40.4k
https://github.com/TheAlgorithms/Python
#python #algorithms
ββββββββββ
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
All algorithms implemented in Python - Implementations are for learning purposes only. They may be less efficient than the implementations in the Python standard library. Use them at your discretion.
Creator: The Algorithms
Stars βοΈ: 160k
Forked By: 40.4k
https://github.com/TheAlgorithms/Python
#python #algorithms
ββββββββββ
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
GitHub
GitHub - TheAlgorithms/Python: All Algorithms implemented in Python
All Algorithms implemented in Python. Contribute to TheAlgorithms/Python development by creating an account on GitHub.
π3
Which among the following list of operators has the highest precedence?
+, -, **, %, /, <<, >>, |
+, -, **, %, /, <<, >>, |
Anonymous Quiz
22%
<<, >>
54%
**
12%
|
12%
%
β€2π1
What will be the value of the following Python expression?
float(4+int(2.39)%2)
float(4+int(2.39)%2)
Anonymous Quiz
27%
5.0
13%
5
47%
4.0
12%
4
π₯7
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