Printing lists in python without spaces

前端 未结 7 668
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-12 16:47

I am doing a program that changes a number in base 10 to base 7, so i did this :

num = int(raw_input(\"\"))
mod = int(0)
list = []
while num> 0:
    mod =         


        
相关标签:
7条回答
  • 2021-01-12 17:47

    Convert the list to a string, and replace the white spaces.

    strings = ['hello', 'world']
    
    print strings
    
    >>>['hello', 'world']
    
    print str(strings).replace(" ", "")
    
    >>>['hello','world']
    
    0 讨论(0)
提交回复
热议问题