Gistlib Logo

gistlib

записывать слово в string по буквам и вывести на экран целиком in python

main.py
word = "hello"
for letter in word:
    print(letter, end="")
61 chars
4 lines
Output:
hello
14 chars
3 lines

similar python code snippets

find urls in a string in python
find ipv4 addresses in a string using regex in python
convert a date to a string in python
find ethereum addresses in a string using regex in python
find dates in a string using regex in python
find hashtags in a string using regex in python
find the length of a string in python
convert a string to a date in python
find credit card numbers in a string using regex in python
find phone numbers in a string using regex in python

related categories

python
string
output

gistlibby LogSnag