Explicación de los elementos básicos de python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
235 B

3 years ago
  1. x = "hello" #stores hello in x
  2. for c in x: #repeats loop for every character of x
  3. print(c) #prints current character
  4. #result: h,e,l,l,o