Advertisement
UraniumGames

Task6

Apr 15th, 2024
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. num = 100
  2. while num < 1000:
  3.     if '3' in str(num) and '2' not in str(num):
  4.         print(num)
  5.     num += 1
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement