Created
March 11, 2023 20:10
-
-
Save KenjiOhtsuka/bde40cec1cd2fe605ac61d7a4c4c1b26 to your computer and use it in GitHub Desktop.
Processs each character in a file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!bin/bash | |
while IFS= read -r line | |
do | |
for i in $(seq 0 $(expr length "$line")) | |
do | |
# print each character | |
c="${line:$i:1}" | |
echo -n c | |
done | |
done < input.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with open('input.txt') as f: | |
for line in f: | |
for c in line: | |
# print each character | |
print(c) | |
print("\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment