Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- flask
- GraphQL
- graphene-django
- allauth
- Django-allauth
- array
- Django
- SQL
- numpy
- python
- FastAPI
- tkinter Radio 동적버튼
- for loop
- check_password
Archives
- Today
- Total
목록[PL] (153)
객
3x+1 문제
#!/usr/lib/env python def add(st1): s = 3 * st1 + 1 print st1, add_even(s) def even(st2): s1 = st2 / 2 print st2, add_even(s1) def add_even(st3): if st3 == 1: print st3 elif st3 % 2 != 0: add(st3) elif st3 % 2 == 0: even(st3) st = input('') add_even(st)
[PL]/Python
2007. 6. 26. 01:24
날아가는 알파벳 (2)
at1 = [] at = ['a','b','c','d','e','f', 'g','h','i','j','k','l', 'm','n','o','p','q','r', 's','t','u','v','w','x', 'y','z'] st = raw_input('alpha : ') for i in range(26): if at[i] == st: al = i at1.append(at[al:] + at[:al+1]) print at1 elif at[i] != st: pass 파이썬 공부 하면서 짜본 것입니다. 허접 하네요.....
[PL]/Python
2007. 6. 26. 01:22