Python Coding
@pythonclcoding
7.45K
subscribers
1.52K
photos
4
videos
49
files
1.39K
links
Learn Python to automate your things. We are here to support you. Ask your question
Reach us - info@clcoding.com
https://whatsapp.com/channel/0029Va5BbiT9xVJXygonSX0G
Download Telegram
Join
Python Coding
7.45K subscribers
Python Coding
60k+ members
https://www.facebook.com/groups/pirawenpython/?ref=share
Facebook
Facebook Groups
Python Coding has 60,262 members. We are supporting freely to everyone. Join us for live support.
Free program: https://www.clcoding.com/
Free Codes: https://www.quora.com/q/clcoding
Free...
Python Coding
https://clcoding.quora.com/How-do-I-write-a-Python-program-to-get-all-the-subject-marks-of-a-student-Separate-marks-into-odd-and-even-and-put-it-i-1?ch=10&oid=317558036&share=b31d3793&srid=RqTn&target_type=answer
Quora
How do I write a Python program to get all the subject marks of a student? Separate marks into odd and even and put it in two separate…
Sudharma's answer: x=int(input('Enter the number of subjects '))
odd=[] # List to store odd number
even=[] # List to stroe even nmber
sodd=0 # to store total of odd values
seven=0 # to stroe total of even values
for a in range(x):
m=int(input('Enter…
Python Coding
https://clcoding.quora.com/What-is-mutable-and-immutable-1?ch=10&oid=318584685&share=7ac4b75f&srid=RqTn&target_type=answer
Quora
What is mutable and immutable?
Answer: Mutable is when something is changeable or has the ability to change. In Python, ‘mutable’ is the ability of objects to change their values. These are often the objects that store a collection of data. Objects of built-in type that are mutable are:…
Python Coding
https://clcoding.quora.com/How-do-you-print-the-current-month-in-Python-1?ch=10&oid=320044232&share=42383183&srid=RqTn&target_type=answer
Quora
How do you print the current month in Python?
Bhavik Agarwal's answer: %B - To get Full Month name like November
%b - To get short version of month name like Nov
[code]import datetime
x = datetime.datetime.now()
print(x.strftime("%B"))
[/code]Output
[code]November
[/code]
Python Coding
https://clcoding.quora.com/How-to-use-if-statement-in-Python-3?ch=10&oid=321259885&share=df5d3591&srid=RqTn&target_type=answer
Quora
How to use 'if-statement' in Python?
Patricia Scott's answer: To understand “if statement”, have a look at some of basic logic;
Python follows following logic;
1. Equal; x == y
2. Not equal; x != y
3. Less than; x < y
4. Less than or equal to; x <= y
5. Greater than; x > y
6. Greater than…
Python Coding
Operators In Python | Day 4
https://youtu.be/G_RxQuvSNCk
Python Coding
Sequence Data Part 1 | Day 5
https://youtu.be/a_PbLKf1iRk
Python Coding
Sequence Data Part 2 | Day 6 | Indexing In Python
https://youtu.be/CI9mq4tMgYk
Python Coding
Sequence Data Part 2 | Day 7 | Slicing In Python
https://youtu.be/6i0V4f0_6bA
Python Coding
Sequence Data Part 2 | Day 8 | Concatenation and Multiplication In Python
https://youtu.be/DCVgGukHWu8
Python Coding
Sequence Data Part 5 | Day 9 |General Sequence Data Methods
https://youtu.be/NQTEeHNrx44
Python Coding
Sequence Data Part 4 | Day 10 |General Sequence Data Methods-2
https://youtu.be/4z1WOaRNm9Y
Python Coding
Numpy in Python | Day 11
https://youtu.be/QNtfd3addhI
Python Coding
Numpy (Part 2) in Python | Day 12
https://youtu.be/9XKLV2Lbq9M
Python Coding
Turtle Magic . Must Try
Python Coding
Python Coding
Reading Data In Python | Day 13
https://youtu.be/fUgg2VbCw4M
Python Coding
Pandas DataFrame Part-I | Day 14
https://youtu.be/MezWT7BABUU
Python Coding
Pandas DataFrame Part-II | Day 15
https://youtu.be/-MuwNg5UNZE
Python Coding