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
Prime number finder and counter in range (ex: 0-100) using python
Filter dictionaries with specific keys (using list comprehension)
working with strings
Demo - Test
Chain
Glimpse Of Numpy Python
e742c63f03ab602f2b38433ffc28b5145ba1332d
Problem: fb_series
Problem: binary
Cofe