Lists_ASCII_ListComphrension_vs_ForLoop.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet



#using list comphrension

ascii_numbers=[ord(x) for x in 'ABCDEFG']
print(ascii_numbers)

#using FOR loop - note this is longer but more logical (easier to follow)
ascii_numbers=[]
for x in 'ABCDEFG':
	ascii_numbers.append(ord(x))


print(ascii_numbers)
                    

Try it yourself