분류 전체보기
-
건강한 감정 습관들카테고리 없음 2016. 1. 1. 02:53
나를 바라보기 나는 나를 비판하지 않고 내가 있는 그대로의 상태에서 느끼고 생각하고 행동한다. 그러한 느낌과 감정의 상태는 내가 창조된 본래의 참나의 모습이다. 나는 그런 진아의 내적 가치관을 가지고 나의 몸과 정신, 영혼 그리고 세상과 조화로움속에 머문다. 나는 나를 느낄 때 나를 희생한다는 느낌을 버린다. 나는 나를 온전히 사랑하며 신뢰하므로 다른 사람의 사랑과 신뢰를 구하지 않는다. 나는 다른 사람의 시선과 감정을 느끼지만 그로부터 완전히 자유롭다. 그래서 나는 다른 사람과 세상을 보는 시야가 언제나 맑다. 나는 적절한 때 내가 필요한 만큼의 앎이 주어진다고 믿는다. 또한 내가 아는 모든 것과 에너지는 다른 사람들에게도 쉽게 공유가 된다. 내가 느끼는 현재의 모든 감각적 체험들은 설령 그것이 두려움..
-
C++ 파라미터가 있는 생성자 오버라이딩 Overriding카테고리 없음 2015. 12. 6. 01:54
Super Class에서 생성자 파라미터가 있는 경우는 Derived Class에서도 같은 파라미터를 받아야 상속받은 생성자를 생성할 수가 있다. class Officer { private: std::string mName; int mId; public: Officer(std::string name, int id); virtual ~Officer(); }; class Police : public Officer // public Gun { Gun *mGun; int mAge; public: Police(std::string name, int id, int age); Police::Police(std::string name, int id, int age) : Officer(name, id), mAge(age..
-
String Methods카테고리 없음 2014. 5. 12. 05:49
str.capitalize() : 서두의 문자를 대문자로 .str.center(width[, fillchar]) : 화면을 중심으로 스트링의 중심의 위치를 세팅한다. str.count(sub[, start[, end]]) : 스트링의 갯수 str.decode([encoding[, errors]]) Decodes the string using the codec registered for encoding. encoding defaults to the default string encoding. errors may be given to set a different error handling scheme. The default is 'strict', meaning that encoding errors raise..
-
String FormattingPython 2014. 5. 11. 00:21
ConversionMeaningNotes'd'Signed integer decimal. 'i'Signed integer decimal. 'o'Signed octal value.(1)'u'Obsolete type – it is identical to 'd'.(7)'x'Signed hexadecimal (lowercase).(2)'X'Signed hexadecimal (uppercase).(2)'e'Floating point exponential format (lowercase).(3)'E'Floating point exponential format (uppercase).(3)'f'Floating point decimal format.(3)'F'Floating point decimal format.(3)'g..
-
String short version & TemplatePython 2014. 5. 10. 23:43
website = 'www.python.com' print (website) print (website[4:]) print (website[-3]) print (website[-3:]) website = 'www.%s.%s' value = ('yahoo','com') print (website % value) format = 'pi with 3 decimal points %.3f' from math import pi print (format % pi) from string import Template s = Template('$x, glorois $x') print(s.safe_substitute(x='Kiss')) a = Template('A $thing must be never $action.') d..
-
List & List member functionPython 2014. 5. 9. 06:39
names = ['hong', 'song', 'ra'] del names[2] names.append('kang') names2 = ['brown', 'chris', 'maria'] names.insert(2, 'koa') names.pop() if names.count('hong') > 0 : print ('index of hong is ' + str(names.index('hong'))) names.remove('hong') names[1] = 'kong' print (names) names.sort(key=None, reverse=False) print (names) names.reverse() print (names)