Python Forum
Writing a code with 3 digit numbers while they cant contain 0 and then sum them
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Writing a code with 3 digit numbers while they cant contain 0 and then sum them
#1
Hey i need to write a code for my teacher, he said Write a code that will have three 3digit numbers in it and if the number contains 0 f.e. 300,301 or so it will be removed. Afterwards i need to sum the numbers that are left.
So far i created a list with 3 variables in it a,b,c and before i defined a,b,c as random.randint(111,999) so it will be a 3 digit number.
My problem is that i dont know how to find a specific thing in a number. I tried changing the a to string and then doing if 0 in a: /nameoflist/.remove(a) but idk
import random
a=[random.randint(111,1000)]
b=[random.randint(111,1000)]
c=[random.randint(111,1000)]
cisla=[a,b,c]
str(a)
if 0 in a:
    cisla.remove(a)
print(cisla)
Note: cisla is name of list and in english it means numbers so u wont get confused :D
Reply


Messages In This Thread
Writing a code with 3 digit numbers while they cant contain 0 and then sum them - by AFKManager - Jan-13-2019, 10:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [solved] a 4-digit display vr34 2 402 Apr-12-2024, 05:38 PM
Last Post: vr34
  [SOLVED] Pad strings to always get three-digit number? Winfried 2 426 Jan-27-2024, 05:23 PM
Last Post: Winfried
  writing and running code in vscode without saving it akbarza 1 443 Jan-11-2024, 02:59 PM
Last Post: deanhystad
  prefix ID Number with 0,00 make 3 digit. mg24 1 800 Oct-06-2022, 07:20 AM
Last Post: ibreeden
  if a string has a digit - print tester_V 2 2,204 Jan-16-2021, 04:48 AM
Last Post: tester_V
  Help with writing or plan part of code Merlin_1 1 1,853 Aug-24-2020, 03:28 AM
Last Post: Larz60+
  Is this right code for 3 digit pin ? fatjuicypython 1 1,855 Aug-21-2020, 11:15 PM
Last Post: bowlofred
  Writing a basic shift code djwilson0495 2 2,323 Aug-16-2020, 01:52 PM
Last Post: djwilson0495
  a better way of writing code Than999 6 3,445 Jun-13-2020, 08:02 AM
Last Post: pyzyx3qwerty
  can you help me out with the code for reversible numbers under 100? Bhavika 5 2,714 Apr-05-2020, 03:36 PM
Last Post: ndc85430

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020