#pythontipqkm ผลการค้นหา
#Python if(False != True): print("Is it False or True ?") #pythontipQKM
#python: Remove duplicates 👇 (Bring it into a set form) lst = [1,2,2,3,4,5,3] print(set(lst)) #pythontipQKM #programming #code #CodeNewbie #softwaredevelopment
#python Define code block to be executed when... Python file is run as the main program Do this by 👇 if __name__ = "__main__": Intrepreter would set this variable __name__ which we compare #pythontipQKM
Try the combinations package as here: 👇 from itertools import combinations fruits_to_buy = ['Mango','Apple','Guava','Chikoo','Jackfruit'] print(list(combinations(fruits_to_buy,2))) Python rocks! #python #pythontipQKM
#python Posted about a HTTP REST API Dev in Go I was asked to try a Python solution as I know that a bit better :-) Got the below for trials tests..Awesome quick test Check it out👇 jsonplaceholder.typicode.com (Really helped. Try it for yours) #pythontipQKM #coding #code #test
#python: What is the output ? if(False|2!=3): print("Hey, what is this ?") #pythontipQKM #code #coding #programmer #programming #softwaredevelopment #SoftwareEngineering
#python Simple Python Package: 👇 ▶️Try the translation & share the limitations! from translate import Translator translator=Translator(from_lang="english",to_lang="french") translation = translator.translate("Good Morning") print (translation) Translate away.. #PythontipQKM
#python Groups_students = {'Mechanical':160,'EcE':188,'Civil':140,'CS':224} Write the code to print the branch having most students ppl in India know most would be running to CS 😃 #pythontipQKM #code #coding #programming #softwaredeveloper #softwaredevelopment #coder
Q from a year back: #Python More pythonistas from n/wk now I guess.. # Write here what this program does word = 'Pythonista' d=dict() for c in word: if c not in d: d[c] = 1 else: d[c] += 1 print(d) #pythontipQKM #code #coding
#python Mathematical functions for complex numbers: 👇 Deal with this by importing cmath What does Python not have ? Life sure is made easy #pythontipQKM #code #CodeNewbie #programming #softwaredevelopment #100DaysOfCode #100Devs #100daysofpythonchallenge #100DaysofPython
#python: Syntactically, Ok with or without semicolon; Why would someone want a semicolon though ? :-) #pythontipQKM #CodeNewbie #code
#python: You can call methods in succession: Example:👇 language="python" print(language.capitalize().upper()) Capitalizing first character and then result is converted to uppercase Will see a lot in string manip operations #pythontipQKM #programming #CodeNewbie #code
Summer is too hot, especially here in India Fruits are a life saver Just have money for only 2 from what I see 👇 ['Mango','Apple','Guava','Chikoo','Jackfruit'] What are the options ? Use Python to the rescue 😃 Share your answer #python #pythontipQKM #pythonprogramming
#python What error can I choose here ? def valid_user_input(x): try: return int(x) > 2 except: #?Error return False valid_user_input(input("Enter Number: ")) #pythontipQKM #programming #CodeNewbie #code
Problem: Admin has entered paragraphs with words seperated by many spaces even when told to enter only one space b between words How can we correct it #by Python program ? :-) #python #pythontipQKM #code #Coding #programming #CodeNewbie
Try the re package in python ✅import re Pattern match & extract utilities: findall, one such Had some examples in prior tweets Ex: Vowels, capitals, digits whatever ✅Pattern match & extract Gets into a list form allowing easy manipulation #python #pythontipQKM #code
Dear all: As posted earlier, am building mini apps Small utilities that can help showcase to employer, for fresher' mainly Do share views Check 👇 #LinuxtipQKM #pythontipQKM #CtipQKM Interviewing, Last mile support it is: Next: Rust, Go, AWS Join in. Suggestions welcome
#python Date Manipulation comes in handy You can print it, append to log files and much more for any needed appl processing ... #ex: from datetime import datetime date_today = datetime.now().strftime("%d-%m-%Y") print(date_today) #pythontipQKM #programming #code
#python Groups_students = {'Mechanical':160,'EcE':188,'Civil':140,'CS':224} Write the code to print the branch having most students ppl in India know most would be running to CS 😃 #pythontipQKM #code #coding #programming #softwaredeveloper #softwaredevelopment #coder
Try the combinations package as here: 👇 from itertools import combinations fruits_to_buy = ['Mango','Apple','Guava','Chikoo','Jackfruit'] print(list(combinations(fruits_to_buy,2))) Python rocks! #python #pythontipQKM
Dear all: As posted earlier, am building mini apps Small utilities that can help showcase to employer, for fresher' mainly Do share views Check 👇 #LinuxtipQKM #pythontipQKM #CtipQKM Interviewing, Last mile support it is: Next: Rust, Go, AWS Join in. Suggestions welcome
Summer is too hot, especially here in India Fruits are a life saver Just have money for only 2 from what I see 👇 ['Mango','Apple','Guava','Chikoo','Jackfruit'] What are the options ? Use Python to the rescue 😃 Share your answer #python #pythontipQKM #pythonprogramming
#python Posted about a HTTP REST API Dev in Go I was asked to try a Python solution as I know that a bit better :-) Got the below for trials tests..Awesome quick test Check it out👇 jsonplaceholder.typicode.com (Really helped. Try it for yours) #pythontipQKM #coding #code #test
Q from a year back: #Python More pythonistas from n/wk now I guess.. # Write here what this program does word = 'Pythonista' d=dict() for c in word: if c not in d: d[c] = 1 else: d[c] += 1 print(d) #pythontipQKM #code #coding
#python Simple Python Package: 👇 ▶️Try the translation & share the limitations! from translate import Translator translator=Translator(from_lang="english",to_lang="french") translation = translator.translate("Good Morning") print (translation) Translate away.. #PythontipQKM
#python Date Manipulation comes in handy You can print it, append to log files and much more for any needed appl processing ... #ex: from datetime import datetime date_today = datetime.now().strftime("%d-%m-%Y") print(date_today) #pythontipQKM #programming #code
Problem: Admin has entered paragraphs with words seperated by many spaces even when told to enter only one space b between words How can we correct it #by Python program ? :-) #python #pythontipQKM #code #Coding #programming #CodeNewbie
#Python if(False != True): print("Is it False or True ?") #pythontipQKM
#python Mathematical functions for complex numbers: 👇 Deal with this by importing cmath What does Python not have ? Life sure is made easy #pythontipQKM #code #CodeNewbie #programming #softwaredevelopment #100DaysOfCode #100Devs #100daysofpythonchallenge #100DaysofPython
#python Define code block to be executed when... Python file is run as the main program Do this by 👇 if __name__ = "__main__": Intrepreter would set this variable __name__ which we compare #pythontipQKM
#python: What is the output ? if(False|2!=3): print("Hey, what is this ?") #pythontipQKM #code #coding #programmer #programming #softwaredevelopment #SoftwareEngineering
#python: You can call methods in succession: Example:👇 language="python" print(language.capitalize().upper()) Capitalizing first character and then result is converted to uppercase Will see a lot in string manip operations #pythontipQKM #programming #CodeNewbie #code
#python What error can I choose here ? def valid_user_input(x): try: return int(x) > 2 except: #?Error return False valid_user_input(input("Enter Number: ")) #pythontipQKM #programming #CodeNewbie #code
#python: Syntactically, Ok with or without semicolon; Why would someone want a semicolon though ? :-) #pythontipQKM #CodeNewbie #code
#python: Remove duplicates 👇 (Bring it into a set form) lst = [1,2,2,3,4,5,3] print(set(lst)) #pythontipQKM #programming #code #CodeNewbie #softwaredevelopment
Try the re package in python ✅import re Pattern match & extract utilities: findall, one such Had some examples in prior tweets Ex: Vowels, capitals, digits whatever ✅Pattern match & extract Gets into a list form allowing easy manipulation #python #pythontipQKM #code
#python Strings are immutable in Python: See what we do to make the first char uppercase 👇 Love the slicing too! Slice away :-) str1='python' print(str1[0].upper()+str1[1:]) #pythontipQKM
String Ops is fundamental Ask Python Check out slicing if not already👇 #justforfun.. Need to extract decimal value of a 2 digit num # Go from 2nd Index to end.. print("Learn Strings") price="24.3" print(price[2:]) Did you have a slice of it :-) #python #pythontipQKM
#python #pythontipQKM Teaching 7th-12th Graders Python Students doing plotting Graphs, Linear Equation Fresher', anyone can use this simple example (Numpy,Matplotlib). Simple code. Just displayed value of tools python provides Never sell yourself short in Interviews
Leetcode is good Not all companies ask it though. A small percentage only An example asked by a dev friend (coderbyte: agecounting pblm) json is asked in some form helps in interviews Wrote this code (Using the suggested requests method) #pythontipQKM #python #Interview
Something went wrong.
Something went wrong.
United States Trends
- 1. Louisville 78.7K posts
- 2. Virginia 231K posts
- 3. Abigail Spanberger 21.7K posts
- 4. Jets 133K posts
- 5. MD-11 17.3K posts
- 6. Honolulu 7,916 posts
- 7. Jay Jones 27.6K posts
- 8. #OlandriaxGlamourWOTY 2,337 posts
- 9. UPS Flight 2976 15K posts
- 10. Jared 27K posts
- 11. Azzi 7,115 posts
- 12. Miyares 14.7K posts
- 13. #AreYouSure2 45K posts
- 14. Colts 64.7K posts
- 15. #いい推しの日 816K posts
- 16. Madrid 433K posts
- 17. #ShootingStar N/A
- 18. #JiminxJungKook 44.1K posts
- 19. Cheney 290K posts
- 20. Sarah Strong 1,584 posts