MCPcopy Create free account
hub / github.com/geekcomputers/Python / string_list_join

Function string_list_join

blackJackGUI.py:67–71  ·  view source on GitHub ↗
(string, string_list)

Source from the content-addressed store, hash-verified

65
66
67def string_list_join(string, string_list):
68 ans = string + " contains "
69 for i in range(len(string_list)):
70 ans += str(string_list[i]) + " "
71 return ans
72
73
74class Hand:

Callers 2

__str__Method · 0.85
__str__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected