Python Codes
رفتن به کانال در Telegram
This channel will serve you all the codes and programs which are related to Python. We post the codes from the beginner level to advanced level.
نمایش بیشتر7 090
مشترکین
اطلاعاتی وجود ندارد24 ساعت
اطلاعاتی وجود ندارد7 روز
اطلاعاتی وجود ندارد30 روز
آرشیو پست ها
7 090
The Art of Doing: Code 40 Challenging Python Programs Today!
This course includes
28.5 hours on-demand video
What you'll learn
Fundamental concepts of computer science that are transferable across ALL programming languages.
Foundations of the Python language as well as how to import and work with 8 libraries such as random, matplotlib, and tkinter.
How to actually write YOUR OWN programs. You will not sit back and watch. You will DO!
40 "Challenge Problems" that include, a problem description, detailed guide, example output, and completed code.
Communicate secretively with a friend by encoding/decoding information based on per-determined bodies of text.
Simulate the Power Ball Lottery and see how adjusting the number of balls affects the likelihood of becoming a billionaire.
See the devastating effect of interest on student loans and graph the results.
Create a GUI interface that simulates the spread of an infectious disease throughout a population.
7 090
Follow us on Instagram! Username: pythonforcoding
https://www.instagram.com/pythonforcoding?r=nametag
7 090
from turtle import *
color('red', 'green')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
@python_codes
