python 3

  1. V

    🔒 Closed [2] python basics: file r/w

    Gandang araw sainyo. Dahil tinamas ako pumasok, at wala akong ginagawa, continue nalang natin yung tutorial natin. Kung nabasa nyo yung [0] at [1], madadalian nalang kayo dito. So reading and writing a file. Hindi sya mahirap. May mga bagay lang na kelangan tandaan. 'a' = append 'r' = read 'w' =...
  2. V

    🔒 Closed [1] python basics: while

    Dahil may pasok pako at isiningit ko lang to, Bibillisan natin. While = Repeat the conclusion while statement is True; Loop until false. Anong ibig sabihn nyan? Ibig sabihin, paulit ulit nyang ie-execute ang conclusion mo habang true pa. Example. i = 0 #define i as integer 0 while i == 0...
  3. V

    🔒 Closed [0] python basics

    Mema share muna. Python basics muna. Why python? ito kasi main PL ko. Data types: list, dictionary, string, integer, float, conclusion, boolean, math func List = [] Dictionary = {} String = 'string' Integer = 12345 Float = 1.2 Conclusion = print() Boolean = true/flase Functions = +,-,*,/ Dun...
  4. D

    🔒 Closed Python 3 on android using jupyter notebook

    >>>>> magandang magandang hapon po Mga ka phc. Sa thread po na to ay tuturuan ko kayo pano e'access ang jupyter notebook through smartphone device lamang. Ang maganda lng kasi dito makaka code ka parin kahit naglalakad ka, or habang nagcocoffee ka sa starbucks or anywhere, anytime pwede mo ma...
  5. D

    🔒 Closed Tut on how to access jupyter notebook on android wherever you go!

    >>>>> magandang magandang hapon po Mga ka phc. Sa thread po na to ay tuturuan ko kayo pano e'access ang jupyter notebook through smartphone device lamang. Ang maganda lng kasi dito makaka code ka parin kahit naglalakad ka, or habang nagcocoffee ka sa starbucks or anywhere, anytime pwede mo ma...
  6. S

    🔒 Closed Questions about using arduino and/or python

    Is it possible po ba na gamitin either Arduino, Python, or both para makakuha ng data from a sensor (i.e. non-invasive current sensor). If yes, please paturo or at least where to start para may path na susundan para aralin. Thanks
  7. A

    🔒 Closed Mga boss newbie lang po baka pwede patulong using for loop

    PYTHON po ha. Paano maka-calculate yung sum ng all even numbers and odd numbers? Halimbawa input ko 15 tas ifactor muna then lahat ng even iadd tas lahat ng odd iadd.
  8. N

    🔒 Closed Python3: print integers as glyphs

    Share ko lang yung ginawa ko a while ago para sa assignment ng kaibigan ko. This code will print positive integers as a 3-line glyph: # Sample output for 5674: # _ _ _ # |_ |_ | |_| # _| |_| | | s = input('Enter Number: ') STAMP = ' _ |_||_|' NUM = ['4', '13467', '38', '36'...
Back
Top