CognitiveScience commited on
Commit
c49bc9d
·
1 Parent(s): dbb1d67

Update ccogsphere.py

Browse files
Files changed (1) hide show
  1. ccogsphere.py +5 -1
ccogsphere.py CHANGED
@@ -11,7 +11,11 @@ def ccs(inp):
11
  if(inp1=="End"):
12
  result=result + " The " + inp1
13
  else:
14
- result+=inp1 + " Picked " + inp.split(":")[1] + " * "
 
 
 
 
15
 
16
 
17
 
 
11
  if(inp1=="End"):
12
  result=result + " The " + inp1
13
  else:
14
+ if (inp1=="Start"):
15
+ result="Start" + "\n"
16
+ else:
17
+ result+=inp1 + " Picked " + inp.split(":")[1] + "\n"
18
+
19
 
20
 
21