Python developers
172 subscribers
8 photos
8 videos
10 links
We are delighted to offer Python tutorials that cater to a wide range of learners, from those just starting out as beginners to more experienced and enthusiastic programmers seeking advanced knowledge.
Download Telegram
Hello everyone,
We will start the session within 15 minutes.
Be tuned!
See you then!
Live stream started
You can join starting from now.
Live stream finished (30 minutes)
This is for today's session
2
Live stream scheduled for
Hello everyone,
Tomorrow we will have a lecture on recursion.
See you then!
Live stream scheduled for
Hey team,
I am a little bit busy and that is the reason for not giving lectures.
I will come back soon.
Thank you
👍51
Live stream scheduled for
Hey team,
Today we will have a lecture on Recursion.
Let's me at 9:00 PM.
See you then.
Live stream started
Live stream finished (25 minutes)
Here is for today's lecture on Recursion
Hey team,
I want to give you some challenging Python scripts.
Let's make it interactive, make sure to post your solution in the discussion group here.
here is the script:
TEMPLATE = "{revenue:>7} | {profit:>+7} | {percent:>7.2%}"
for revenue, profit in data:
row = TEMPLATE.format(revenue = revenue, profit = profit, percent=profit/revenue)
print(row)

What is the output for the above code and tell us what it does line by line.
1