fork download
  1. c = input("Quantos links de download deseja colocar: ")
  2. print()
  3. i = 0
  4. texto = ""
  5. while (i < int(c)):
  6. dw = input("Link de Download:")
  7. texto = texto + dw + " "
  8. i = i + 1
  9. print()
  10. print(texto)
  11.  
  12. #https://pt.stackoverflow.com/q/57071/101
Success #stdin #stdout 0.02s 9424KB
stdin
2
https://www.google.com/
https://stackoverflow.com/
stdout
Quantos links de download deseja colocar: 
Link de Download:
Link de Download:
https://www.google.com/  https://stackoverflow.com/