CodeCipher Headquarter
@CodeCipherHQ
Followers
148
Following
513
Media
44
Statuses
520
Hi, I'm CodeCipherHQ! A tech enthusiast passionate about secure coding, cryptography, and digital innovation. Let's explore the future of technology together
Kwara, Nigeria
Joined June 2023
Which matters more for data science success? A) Coding skills B) Communication skills Reply with your vote ๐ #DataScience #AI
#nadiedicenada #wargajagawarga #MundosOpuestos13 #เธเธญเธเธเนเธ เธนเธงเธดเธเธเธฃเน #codecipherhq
0
0
0
2 important things about and/or Python operators that most beginners miss: โบ Short-circuit evaluation โ stops as soon as the result is determined. For example, False and x never evaluates x. โบ Return actual values, not True/False โ and returns the first falsy value or the
4
3
26
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
23
16
97
Python Coding challenge - Day 835| What is the output of the following Python Code? Answer with Explanation: https://t.co/16oCrMJRKY
7
21
80
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
1
10
63
๐ฅ Top 50 LLM Interview Questions & Answers Get ready for your next AI / ML / LLM interview with this power-packed Q&A guide covering: โ
Prompt Engineering โ
Fine-tuning & RAG โ
Transformer Architecture โ
Tokenization & Attention โ
Real-world LLM Scenarios Perfect for
690
513
2K
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
44
34
173
Python Coding challenge - Day 820| What is the output of the following Python Code? Answer with Explanation: https://t.co/9MAep2zqYr
10
11
67
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
74
29
374
@Python_Dv Answer: B) 7777777 โบ x = "7" (string) โบ int(x) = 7 (integer) โบ 7 * "7" = integer * string โบ Result: "7" repeated 7 times = "7777777" For beginners: int(x) returns integer, but x stays a string.
1
1
21
@PythonPr Answer: a) 3|2|1|0| โบ while(j) means "while j is truthy" โบ 0 is falsy, all other numbers truthy โบ j=4: subtract, print 3| โบ j=3: subtract, print 2| โบ j=2: subtract, print 1| โบ j=1: subtract, print 0| โบ j=0: falsy, loop ends For beginners: while (j) = while j != 0
1
1
18