• Kursy
  • Kompilator kodu
  • Dyskusja
  • Cennik
  • Zespoły
Menu
+ 1

Hello guys. What are the other ways of printing out even numbers in python?

https://code.sololearn.com/ce34u2bLQS5j/?ref=app

python3
21st Dec 2020, 2:29 PM
Mas'ud Saleh
Mas'ud Saleh - avatar
2 odpowiedzi
+ 3
even = [i for i in range(0,11,2)] print(even)
21st Dec 2020, 3:08 PM
visph
visph - avatar
0
even_list = [] for num in range (0, 11): if num % 2 == 0: even_list.append(num) print(even_list)
21st Dec 2020, 6:33 PM
Husain Al Abbood
Husain Al Abbood - avatar

Często masz takie pytania?

Ucz się bardziej efektywnie, za darmo:

  • Wprowadzenie do Pythona

    7.1M uczących się

  • Wprowadzenie do Java

    4.7M uczących się

  • Wprowadzenie do C

    1.5M uczących się

  • Wprowadzenie do HTML

    7.5M uczących się

Zobacz wszystkie kursy
Popularne dzisiaj
Is this realistic enough?
1 Votes
𝙵𝙸𝙽𝙳 𝚃𝙷𝙴 𝙸𝙽𝙿𝚄𝚃 𝙾𝙵 𝚃𝙷𝙴 𝙿𝚁𝙾𝙶𝚁𝙰𝙼
1 Votes
"Which is harder to master — Machine Learning or Cybersecurity? And why?"
1 Votes
"What’s the best way to combine creativity and coding? Can storytelling improve web apps?"
1 Votes
Need friends
0 Votes
MASS N NUMBER OF OBJECT DELETION FROM A CLASS
0 Votes
Can someone explain inline and block elements please
0 Votes
I am a beginner, please teach me how to use Python
0 Votes
Python
1 Votes
Can u learn multiple language at the same time, without misplacing the formats of each with the other
0 Votes