fork download
  1. def sowDiscord():
  2. discord = [
  3. {'name': 'Flat Earth Theory', 'type': 'conspiracy', 'evidence': ['Satellite imagery can be photoshopped', 'Shadow angles don\'t make sense']},
  4. {'name': '9/11 Trutherism', 'type': 'conspiracy', 'evidence': ['Questionable government response', 'Missing flight data']},
  5. {'name': 'COVID-19 Hoax', 'type': 'conspiracy', 'evidence': ['Lack of transparency from health agencies', 'Rapid vaccine development timeline']},
  6. {'name': 'Government Mind Control', 'type': 'conspiracy', 'evidence': ['Strange behavior of children', 'Increased use of technology']}
  7. ]
  8.  
  9. for i in discord:
  10. print(i['name'] + ': ' + ', '.join([str(e) for e in i['evidence']]))
  11.  
  12.  
Success #stdin #stdout 0.01s 7116KB
stdin
Standard input is empty
stdout
Standard output is empty