This file contains hidden or 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
| import collections | |
| string = "aaaBBBcccDDD" | |
| line = str() | |
| counter = collections.Counter(string) | |
| for key, value in counter.items(): | |
| line +=(f'{key}: {value} ') | |
| print(line) |
This file contains hidden or 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
| root@hq:/home/root/Downloads # dd if=kali-linux-xfce-2019.1a-amd64.iso of=/dev/da0 bs=1M status=progress |
OlderNewer