Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
PyRangeArg
#Python 2.7.17 #PyRangeArg: Demonstration of Python Range() and *arcs & **kwargs #this code is created by Rezaul Hoque on November 30,2021;contact: jewelmrh@yahoo.com #note: codes shared by Rezaul Hoque on rextester are not for sale; they are created and shared to facilitate the algorithm learning process; many like Hoque use this platform to practice programming ;Rezaul hopes his contribution helps others to fine tune their learning; print('Python Range') a= ['a','b','c'] for i in range(len(a)): print(i ,a[i]) print('Python *args & **kwargs') def a(**ka): print(ka['name'],ka['score']) print(ka['name2'],ka['score2']) print(ka['name3'],ka['score3']) a(name="a", score=30,name2="b",score2=40,name3="c",score3=20) def total(*score): print(sum(score)) total(30,40,20)
run
|
edit
|
history
|
help
0
0aa6d60d0504c8470fc90c1d5cbf06083cdaadeab6e102bf90732ac2ab66dfdc
First programm
building a basic calculator
Problem: rstring
Aufgabe 16
Demo - Test
Recurring function checker
PyAddBook
on_off_3
Mounesh